Function: org-odt-horizontal-rule

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

Signature

(org-odt-horizontal-rule HORIZONTAL-RULE CONTENTS INFO)

Documentation

Transcode an HORIZONTAL-RULE object from Org to ODT.

CONTENTS is nil. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Horizontal Rule

(defun org-odt-horizontal-rule (_horizontal-rule _contents _info)
  "Transcode an HORIZONTAL-RULE  object from Org to ODT.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (format "\n<text:p text:style-name=\"%s\">%s</text:p>"
	  "Horizontal_20_Line" ""))