Function: org-html--has-caption-p

org-html--has-caption-p is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html--has-caption-p ELEMENT &optional INFO)

Documentation

Non-nil when ELEMENT has a caption affiliated keyword.

INFO is a plist used as a communication channel. This function is meant to be used as a predicate for org-export-get-ordinal or a value to org-html-standalone-image-predicate.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html--has-caption-p (element &optional _info)
  "Non-nil when ELEMENT has a caption affiliated keyword.
INFO is a plist used as a communication channel.  This function
is meant to be used as a predicate for `org-export-get-ordinal' or
a value to `org-html-standalone-image-predicate'."
  (org-element-property :caption element))