Function: org-html-image-link-filter

org-html-image-link-filter is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-image-link-filter DATA BACKEND INFO)

Documentation

Process image links that are inside descriptions.

DATA is the parse tree. INFO is and info plist. See org-export-insert-image-links for more details.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Link

(defun org-html-image-link-filter (data _backend info)
"Process image links that are inside descriptions.
DATA is the parse tree.  INFO is and info plist.
See `org-export-insert-image-links' for more details."
  (org-export-insert-image-links data info org-html-inline-image-rules))