Hello,
I defined a capture template to create a new entry from my browser. Everything works fine except that some of the properties defined in the head section are missing. I only get #+TITLE: and #+roam_key:. Everything else is missing. Is my configuration correct or am I running into a bug here?
This is my configuration
(use-package org-roam
:hook
(after-init . org-roam-mode)
:custom
(org-roam-directory "~/Nextcloud/org/roam")
:bind (:map org-roam-mode-map
(("C-c n l" . org-roam)
("C-c n f" . org-roam-find-file)
("C-c n g" . org-roam-show-graph))
:map org-mode-map
(("C-c n i" . org-roam-insert)))
:config
(setq org-roam-ref-capture-templates
'(("r" "ref" plain (function org-roam-capture--get-point)
"%?"
:file-name "websites/${slug}"
:head "#+TITLE: ${title}\n#+roam_key: ${ref}\n#+HUGO_SLUG: ${slug}\n#+roam_tags: website\n#+title: ${title}\n\n- source :: ${ref}\n"
:unnarrowed t)))
Does anyone have an idea why this is happening?
Thank you very much