Variable: org-roam-db-extra-links-exclude-keys
org-roam-db-extra-links-exclude-keys is a customizable variable
defined in org-roam-db.el.
Value
((node-property "ROAM_REFS")
(keyword "transclude"))
Documentation
Keys to ignore when mapping over links.
The car of the association list is the Org element type (e.g. keyword). The cdr is a list of case-insensitive strings to exclude from being treated as links.
For example, we use this to prevent self-referential links in ROAM_REFS.
This variable was added, or its default value changed, in org-roam version 2.2.0.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defcustom org-roam-db-extra-links-exclude-keys '((node-property . ("ROAM_REFS"))
(keyword . ("transclude")))
"Keys to ignore when mapping over links.
The car of the association list is the Org element type (e.g.
keyword). The cdr is a list of case-insensitive strings to
exclude from being treated as links.
For example, we use this to prevent self-referential links in
ROAM_REFS."
:package-version '(org-roam . "2.2.0")
:group 'org-roam
:type '(alist))