Function: org-odt-verbatim

org-odt-verbatim is a byte-compiled function defined in ox-odt.el.gz.

Signature

(org-odt-verbatim VERBATIM CONTENTS INFO)

Documentation

Transcode a VERBATIM object from Org to ODT.

CONTENTS is nil. INFO is a plist used as a communication channel.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Verbatim

(defun org-odt-verbatim (verbatim _contents _info)
  "Transcode a VERBATIM object from Org to ODT.
CONTENTS is nil.  INFO is a plist used as a communication
channel."
  (format "<text:span text:style-name=\"%s\">%s</text:span>"
	  "OrgCode" (org-odt--encode-plain-text
		     (org-element-property :value verbatim))))