Function: org-html--container

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

Signature

(org-html--container HEADLINE INFO)

Documentation

Return HTML container name for HEADLINE as a string.

INFO is the info plist.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defun org-html--container (headline info)
  "Return HTML container name for HEADLINE as a string.
INFO is the info plist."
  (or (org-element-property :HTML_CONTAINER headline)
      (if (= 1 (org-export-get-relative-level headline info))
	  (plist-get info :html-container)
	"div")))