Function: org-html-export-snippet
org-html-export-snippet is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-export-snippet EXPORT-SNIPPET CONTENTS INFO)
Documentation
Transcode a EXPORT-SNIPPET object from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Export Snippet
(defun org-html-export-snippet (export-snippet _contents _info)
"Transcode a EXPORT-SNIPPET object from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual
information."
(when (eq (org-export-snippet-backend export-snippet) 'html)
(org-element-property :value export-snippet)))