Function: org-texinfo-export-block
org-texinfo-export-block is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo-export-block EXPORT-BLOCK CONTENTS INFO)
Documentation
Transcode a EXPORT-BLOCK element 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 Block
(defun org-texinfo-export-block (export-block _contents _info)
"Transcode a EXPORT-BLOCK element from Org to Texinfo.
CONTENTS is nil. INFO is a plist holding contextual information."
(when (string= (org-element-property :type export-block) "TEXINFO")
(org-remove-indentation (org-element-property :value export-block))))