Variable: org-export-headline-levels

org-export-headline-levels is a customizable variable defined in ox.el.gz.

Value

3

Documentation

This level and its ancestors will be exported as a headline.

Descendants of this level will usually produce itemized or enumerated lists when exported, but backend behavior may differ.

This option can also be set with the OPTIONS keyword, e.g. "H:2".

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox.el.gz
(defcustom org-export-headline-levels 3
  "This level and its ancestors will be exported as a headline.

Descendants of this level will usually produce itemized or
enumerated lists when exported, but backend behavior may differ.

This option can also be set with the OPTIONS keyword,
e.g. \"H:2\"."
  :group 'org-export-general
  :type 'integer
  :safe #'integerp)