Variable: nxml-heading-element-name-regexp

nxml-heading-element-name-regexp is a customizable variable defined in nxml-outln.el.gz.

Value

"title\\|head"

Documentation

Regular expression matching the name of elements used as headings.

An XML element is only recognized as a heading if it occurs as or within the first child of an element that is recognized as a section. See the variable nxml-section-element-name-regexp for more details.

Source Code

;; Defined in /usr/src/emacs/lisp/nxml/nxml-outln.el.gz
(defcustom nxml-heading-element-name-regexp "title\\|head"
  "Regular expression matching the name of elements used as headings.
An XML element is only recognized as a heading if it occurs as or
within the first child of an element that is recognized as a section.
See the variable `nxml-section-element-name-regexp' for more details."
  :group 'nxml
  :type 'regexp)