Function: org-ascii-example-block
org-ascii-example-block is a byte-compiled function defined in
ox-ascii.el.gz.
Signature
(org-ascii-example-block EXAMPLE-BLOCK CONTENTS INFO)
Documentation
Transcode a EXAMPLE-BLOCK element 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
;;;; Example Block
(defun org-ascii-example-block (example-block _contents info)
"Transcode a EXAMPLE-BLOCK element from Org to ASCII.
CONTENTS is nil. INFO is a plist holding contextual information."
(org-ascii--justify-element
(org-ascii--box-string
(org-export-format-code-default example-block info) info)
example-block info))