Variable: org-html-divs

org-html-divs is a customizable variable defined in ox-html.el.gz.

Value

((preamble "div" "preamble") (content "div" "content")
 (postamble "div" "postamble"))

Documentation

Alist of the three section elements for HTML export.

The car of each entry is one of preamble, content or postamble. The cdrs of each entry are the ELEMENT_TYPE and ID for each section of the exported document.

Note that changing the default will prevent you from using org-info.js for your website.

This variable was added, or its default value changed, in Org version
8.0.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
(defcustom org-html-divs
  '((preamble  "div" "preamble")
    (content   "div" "content")
    (postamble "div" "postamble"))
  "Alist of the three section elements for HTML export.
The car of each entry is one of `preamble', `content' or `postamble'.
The cdrs of each entry are the ELEMENT_TYPE and ID for each
section of the exported document.

Note that changing the default will prevent you from using
org-info.js for your website."
  :group 'org-export-html
  :version "24.4"
  :package-version '(Org . "8.0")
  :type '(list :greedy t
	       (list :tag "Preamble"
		     (const :format "" preamble)
		     (string :tag "element") (string :tag "     id"))
	       (list :tag "Content"
		     (const :format "" content)
		     (string :tag "element") (string :tag "     id"))
	       (list :tag "Postamble" (const :format "" postamble)
		     (string :tag "     id") (string :tag "element"))))