Function: org-texinfo-verbatim
org-texinfo-verbatim is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo-verbatim VERBATIM CONTENTS INFO)
Documentation
Transcode a VERBATIM object from Org to Texinfo.
CONTENTS is nil. INFO is a plist used as a communication channel.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Verbatim
(defun org-texinfo-verbatim (verbatim _contents info)
"Transcode a VERBATIM object from Org to Texinfo.
CONTENTS is nil. INFO is a plist used as a communication
channel."
(org-texinfo--text-markup
(org-element-property :value verbatim) 'verbatim info))