Function: org-odt--paragraph-style
org-odt--paragraph-style is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt--paragraph-style PARAGRAPH)
Documentation
Return style of PARAGRAPH.
Style is a symbol among quoted, centered and nil.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Paragraph
(defun org-odt--paragraph-style (paragraph)
"Return style of PARAGRAPH.
Style is a symbol among `quoted', `centered' and nil."
(cl-case (org-element-type
(org-element-lineage
paragraph
'(center-block quote-block section)))
(center-block 'center)
(quote-block 'quoted)))