Function: org-html-center-block
org-html-center-block is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-center-block CENTER-BLOCK CONTENTS INFO)
Documentation
Transcode a CENTER-BLOCK element from Org to HTML.
CONTENTS holds the contents of the block. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Center Block
(defun org-html-center-block (_center-block contents _info)
"Transcode a CENTER-BLOCK element from Org to HTML.
CONTENTS holds the contents of the block. INFO is a plist
holding contextual information."
(format "<div class=\"org-center\">\n%s</div>" contents))