Function: org-element--headline-footnote-section-p

org-element--headline-footnote-section-p is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element--headline-footnote-section-p HEADLINE)

Documentation

Return t when HEADLINE is a footnote section and nil otherwise.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element--headline-footnote-section-p (headline)
  "Return t when HEADLINE is a footnote section and nil otherwise."
  (and org-footnote-section
       (string= org-footnote-section
                (org-element-property :raw-value headline))))