Function: org-element-center-block-interpreter
org-element-center-block-interpreter is a byte-compiled function
defined in org-element.el.gz.
Signature
(org-element-center-block-interpreter _ CONTENTS)
Documentation
Interpret a center-block element as Org syntax.
CONTENTS is the contents of the element.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-center-block-interpreter (_ contents)
"Interpret a center-block element as Org syntax.
CONTENTS is the contents of the element."
(format "#+begin_center\n%s#+end_center" contents))