Function: org-html-horizontal-rule
org-html-horizontal-rule is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-horizontal-rule HORIZONTAL-RULE CONTENTS INFO)
Documentation
Transcode an HORIZONTAL-RULE object from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Horizontal Rule
(defun org-html-horizontal-rule (_horizontal-rule _contents info)
"Transcode an HORIZONTAL-RULE object from Org to HTML.
CONTENTS is nil. INFO is a plist holding contextual information."
(org-html-close-tag "hr" nil info))