Function: org-export-first-sibling-p

org-export-first-sibling-p is a byte-compiled function defined in ox.el.gz.

Signature

(org-export-first-sibling-p BLOB INFO)

Documentation

Non-nil when BLOB is the first sibling in its parent.

BLOB is an element or an object. If BLOB is a headline, non-nil means it is the first sibling in the sub-tree. INFO is a plist used as a communication channel.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-first-sibling-p (blob info)
  "Non-nil when BLOB is the first sibling in its parent.
BLOB is an element or an object.  If BLOB is a headline, non-nil
means it is the first sibling in the sub-tree.  INFO is a plist
used as a communication channel."
  (org-element-type-p
   (org-export-get-previous-element blob info)
   '(nil section)))