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