Function: org-odt-paragraph

org-odt-paragraph is a byte-compiled function defined in ox-odt.el.gz.

Signature

(org-odt-paragraph PARAGRAPH CONTENTS INFO)

Documentation

Transcode a PARAGRAPH element from Org to ODT.

CONTENTS is the contents of the paragraph, as a string. INFO is the plist used as a communication channel.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defun org-odt-paragraph (paragraph contents info)
  "Transcode a PARAGRAPH element from Org to ODT.
CONTENTS is the contents of the paragraph, as a string.  INFO is
the plist used as a communication channel."
  (org-odt--format-paragraph
   paragraph contents info
   (or (org-element-property :style paragraph) "Text_20_body")
   "OrgCenter"
   "Quotations"))