Function: org-odt--enumerable-image-p
org-odt--enumerable-image-p is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt--enumerable-image-p ELEMENT INFO)
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defun org-odt--enumerable-image-p (element info)
(org-odt--standalone-link-p
element info
;; Paragraph should have a caption or label. It SHOULD NOT be a
;; replacement element. (i.e., It SHOULD NOT be a result of LaTeX
;; processing.)
(lambda (p)
(and (not (org-element-property :replaces p))
(or (org-element-property :caption p)
(org-element-property :name p))))
;; Link should point to an image file.
(lambda (l)
(cl-assert (eq (org-element-type l) 'link))
(org-export-inline-image-p l (plist-get info :odt-inline-image-rules)))))