Function: org-export-collect-figures

org-export-collect-figures is a byte-compiled function defined in ox.el.gz.

Signature

(org-export-collect-figures INFO PREDICATE)

Documentation

Build a list of figures.

INFO is a plist used as a communication channel. PREDICATE is a function which accepts one argument: a paragraph element and whose return value is non-nil when that element should be collected.

A figure is a paragraph type element, with a caption, verifying PREDICATE. The latter has to be provided since a "figure" is a vague concept that may depend on backend.

Return a list of elements recognized as figures.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defun org-export-collect-figures (info predicate)
  "Build a list of figures.

INFO is a plist used as a communication channel.  PREDICATE is
a function which accepts one argument: a paragraph element and
whose return value is non-nil when that element should be
collected.

A figure is a paragraph type element, with a caption, verifying
PREDICATE.  The latter has to be provided since a \"figure\" is
a vague concept that may depend on backend.

Return a list of elements recognized as figures."
  (org-export-collect-elements 'paragraph info predicate))