I’m new to org-roam and would like to have a richer starting template than the default. Is there a guide beyond the manual? To start, I just want something like this when I create a new note:
#+title:
#+time:
#+location:
The default title creation is okay, but I’d like to be able to auto fill-in
(format-time-string “%Y-%m-%dT%H:%M:%S”)
i.e., the UTC date and time for #+time. I guessed/mucked around with Easy Customization and
…
Header format :
#+title: ${title}
#+time: %<%Y-%m-%dT%H:%M:%S>
…
finally worked for #+time, but I’d like to just run some elisp code such as
(defun insert-dateutc.1 ()
(interactive)
(insert (format-time-string “%Y-%m-%dT%H:%M:%S”)))
For #+location I’d also like to be able to do some elisp to get longitude and latitude, but that can wait till I hack geolocation.el for Linux.
Is there any good examples with code for customizing the note templates? I’d eventually like to add in my entire org-mode header section as well.