Function: org-roam--format-nodes-using-function
org-roam--format-nodes-using-function is a byte-compiled function
defined in org-roam-node.el.
Signature
(org-roam--format-nodes-using-function NODES)
Documentation
Formats NODES using the function org-roam-node-display-template.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
(defun org-roam--format-nodes-using-function (nodes)
"Formats NODES using the function org-roam-node-display-template."
(mapcar (lambda (node)
(cons
(propertize (funcall org-roam-node-display-template node) 'node node)
node))
nodes)
)