I am trying to use concat
from within an org-capture
template. But I keep getting an "Invalid template" error, so something's not right. Here is my code:
(setq org-capture-templates
'(("j" "Journal" entry (file+datetree "~/org/journal.org")
(concat "* " (format-time-string "%H:%M") " %^{Title}\n\n%?"))))
Any ideas?