Function: org-texinfo-code

org-texinfo-code is a byte-compiled function defined in ox-texinfo.el.gz.

Signature

(org-texinfo-code CODE CONTENTS INFO)

Documentation

Transcode a CODE 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
;;;; Code

(defun org-texinfo-code (code _contents info)
  "Transcode a CODE 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 code) 'code info))