Function: org-roam-get-fontification-buffer-create
org-roam-get-fontification-buffer-create is a byte-compiled function
defined in org-roam-utils.el.
Signature
(org-roam-get-fontification-buffer-create)
Documentation
Get or create the org-roam-fontification-buffer.
This buffer used to fontify multiple backlink previews efficiently (org-mode is booted just once).
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-utils.el
(defun org-roam-get-fontification-buffer-create ()
"Get or create the `org-roam-fontification-buffer'.
This buffer used to fontify multiple backlink previews efficiently (`org-mode' is booted just once)."
(with-current-buffer (get-buffer-create org-roam-fontification-buffer)
(unless (derived-mode-p 'org-mode)
(org-mode))
(current-buffer)))