Variable: org-odt-automatic-styles
org-odt-automatic-styles is a variable defined in ox-odt.el.gz.
Value
nil
Documentation
Registry of automatic styles for various OBJECT-TYPEs.
The variable has the following form:
((OBJECT-TYPE-A
((OBJECT-NAME-A.1 OBJECT-PROPS-A.1)
(OBJECT-NAME-A.2 OBJECT-PROPS-A.2) ...))
(OBJECT-TYPE-B
((OBJECT-NAME-B.1 OBJECT-PROPS-B.1)
(OBJECT-NAME-B.2 OBJECT-PROPS-B.2) ...))
...).
OBJECT-TYPEs could be "Section", "Table", "Figure" etc.
OBJECT-PROPS is (typically) a plist created by passing
"#+ATTR_ODT: " option to org-odt-parse-block-attributes.
Use org-odt-add-automatic-style to add update this variable.'
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defvar org-odt-automatic-styles '()
"Registry of automatic styles for various OBJECT-TYPEs.
The variable has the following form:
((OBJECT-TYPE-A
((OBJECT-NAME-A.1 OBJECT-PROPS-A.1)
(OBJECT-NAME-A.2 OBJECT-PROPS-A.2) ...))
(OBJECT-TYPE-B
((OBJECT-NAME-B.1 OBJECT-PROPS-B.1)
(OBJECT-NAME-B.2 OBJECT-PROPS-B.2) ...))
...).
OBJECT-TYPEs could be \"Section\", \"Table\", \"Figure\" etc.
OBJECT-PROPS is (typically) a plist created by passing
\"#+ATTR_ODT: \" option to `org-odt-parse-block-attributes'.
Use `org-odt-add-automatic-style' to add update this variable.'")