Function: org-ascii-center-block

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

Signature

(org-ascii-center-block CENTER-BLOCK CONTENTS INFO)

Documentation

Transcode a CENTER-BLOCK element from Org to ASCII.

CONTENTS holds the contents of the block. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-ascii.el.gz
;;;; Center Block

(defun org-ascii-center-block (_center-block contents _info)
  "Transcode a CENTER-BLOCK element from Org to ASCII.
CONTENTS holds the contents of the block.  INFO is a plist
holding contextual information."
  ;; Center has already been taken care of at a lower level, so
  ;; there's nothing left to do.
  contents)