Variable: org-roam-db-node-include-function

org-roam-db-node-include-function is a customizable variable defined in org-roam-db.el.

Value

#[0 "\300\207" [t] 1]

Documentation

A custom function to check if the point contains a valid node.

This function is called each time a node (both file and headline) is about to be saved into the Org-roam database.

If the function returns nil, Org-roam will skip the node. This function is useful for excluding certain nodes from the Org-roam database.

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-db.el
(defcustom org-roam-db-node-include-function (lambda () t)
  "A custom function to check if the point contains a valid node.
This function is called each time a node (both file and headline)
is about to be saved into the Org-roam database.

If the function returns nil, Org-roam will skip the node. This
function is useful for excluding certain nodes from the Org-roam
database."
  :type 'function
  :group 'org-roam)