Function: org-element--get-global-node-properties
org-element--get-global-node-properties is a byte-compiled function
defined in org-element.el.gz.
Signature
(org-element--get-global-node-properties)
Documentation
Return node properties associated with the whole Org buffer.
Upcase property names. It avoids confusion between properties obtained through property drawer and default properties from the parser (e.g. :end and :END:). Return value is a plist.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;; org-data
(defun org-element--get-global-node-properties ()
"Return node properties associated with the whole Org buffer.
Upcase property names. It avoids confusion between properties
obtained through property drawer and default properties from the
parser (e.g. `:end' and :END:). Return value is a plist."
(org-with-wide-buffer
(goto-char (point-min))
(while (and (org-at-comment-p) (bolp)) (forward-line))
(org-element--get-node-properties t)))