Variable: org-roam-preview-postprocess-functions
org-roam-preview-postprocess-functions is a customizable variable
defined in org-roam-mode.el.
Value
(org-roam-strip-comments)
Documentation
A list of functions to postprocess the preview content.
Each function takes a single argument, the string for the preview content, and returns the post-processed string. The functions are applied in order of appearance in the list.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-mode.el
(defcustom org-roam-preview-postprocess-functions (list #'org-roam-strip-comments)
"A list of functions to postprocess the preview content.
Each function takes a single argument, the string for the preview
content, and returns the post-processed string. The functions are
applied in order of appearance in the list."
:group 'org-roam
:type 'hook)