Function: org-roam-capture--target-truepath
org-roam-capture--target-truepath is a byte-compiled function defined
in org-roam-capture.el.
Signature
(org-roam-capture--target-truepath PATH)
Documentation
From PATH get the correct path to the current capture target and return it.
PATH is a string that can optionally contain templated text in it.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-capture.el
(defun org-roam-capture--target-truepath (path)
"From PATH get the correct path to the current capture target and return it.
PATH is a string that can optionally contain templated text in
it."
(or (org-roam-node-file org-roam-capture--node)
(thread-first
path
(org-roam-capture--fill-template)
(string-trim)
(expand-file-name org-roam-directory))))