Function: org-ascii-export-block

org-ascii-export-block is a byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-export-block EXPORT-BLOCK CONTENTS INFO)

Documentation

Transcode a EXPORT-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
;;;; Export Block

(defun org-ascii-export-block (export-block _contents info)
  "Transcode a EXPORT-BLOCK element from Org to ASCII.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (when (string= (org-element-property :type export-block) "ASCII")
    (org-ascii--justify-element
     (org-element-property :value export-block) export-block info)))