Variable: org-element-multiple-keywords

org-element-multiple-keywords is a variable defined in org-element.el.gz.

Value

("CAPTION" "HEADER")

Documentation

List of affiliated keywords that can occur more than once in an element.

Their value will be consed into a list of strings, which will be returned as the value of the property.

This list is checked after translations have been applied. See org-element-keyword-translation-alist.

By default, all keywords setting attributes (e.g., "ATTR_LATEX") allow multiple occurrences and need not to be in this list.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defconst org-element-multiple-keywords '("CAPTION" "HEADER")
  "List of affiliated keywords that can occur more than once in an element.

Their value will be consed into a list of strings, which will be
returned as the value of the property.

This list is checked after translations have been applied.  See
`org-element-keyword-translation-alist'.

By default, all keywords setting attributes (e.g., \"ATTR_LATEX\")
allow multiple occurrences and need not to be in this list.")