Function: org-roam--buffer-promoteable-p
org-roam--buffer-promoteable-p is a byte-compiled function defined in
org-roam-node.el.
Signature
(org-roam--buffer-promoteable-p)
Documentation
Verify that this buffer is promoteable: There is a single level-1 heading and no extra content before the first heading.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-node.el
(defun org-roam--buffer-promoteable-p ()
"Verify that this buffer is promoteable:
There is a single level-1 heading
and no extra content before the first heading."
(and
(= (org-roam--h1-count) 1)
(org-with-point-at 1 (org-at-heading-p))))