Function: org-ascii-code
org-ascii-code is a byte-compiled function defined in ox-ascii.el.gz.
Signature
(org-ascii-code CODE CONTENTS INFO)
Documentation
Return a CODE object from Org to ASCII.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Code
(defun org-ascii-code (code _contents info)
"Return a CODE object from Org to ASCII.
CONTENTS is nil. INFO is a plist holding contextual
information."
(format (plist-get info :ascii-verbatim-format)
(org-element-property :value code)))