Function: org-texinfo-inline-src-block
org-texinfo-inline-src-block is a byte-compiled function defined in
ox-texinfo.el.gz.
Signature
(org-texinfo-inline-src-block INLINE-SRC-BLOCK CONTENTS INFO)
Documentation
Transcode an INLINE-SRC-BLOCK element from Org to Texinfo.
CONTENTS holds the contents of the item. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Inline Src Block
(defun org-texinfo-inline-src-block (inline-src-block _contents _info)
"Transcode an INLINE-SRC-BLOCK element from Org to Texinfo.
CONTENTS holds the contents of the item. INFO is a plist holding
contextual information."
(format "@code{%s}"
(org-texinfo--sanitize-content
(org-element-property :value inline-src-block))))