Function: org-html-line-break

org-html-line-break is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-line-break LINE-BREAK CONTENTS INFO)

Documentation

Transcode a LINE-BREAK 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
;;;; Line Break

(defun org-html-line-break (_line-break _contents info)
  "Transcode a LINE-BREAK object from Org to HTML.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (concat (org-html-close-tag "br" nil info) "\n"))