Function: org-ascii-fixed-width

org-ascii-fixed-width is a byte-compiled function defined in ox-ascii.el.gz.

Signature

(org-ascii-fixed-width FIXED-WIDTH CONTENTS INFO)

Documentation

Transcode a FIXED-WIDTH 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
;;;; Fixed Width

(defun org-ascii-fixed-width (fixed-width _contents info)
  "Transcode a FIXED-WIDTH element from Org to ASCII.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (org-ascii--justify-element
   (org-ascii--box-string
    (org-remove-indentation
     (org-element-property :value fixed-width))
    info)
   fixed-width info))