Variable: org-odt-styles-dir-list

org-odt-styles-dir-list is a variable defined in ox-odt.el.gz.

Value

("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/etc/styles/"
 "/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/etc/styles/"
 "/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/etc/styles/"
 "/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/org/etc/styles/"
 "/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/etc/org/")

Documentation

List of directories to search for OpenDocument styles files.

See org-odt-styles-dir. The entries in this list are populated heuristically based on the values of org-odt-lib-dir and org-odt-data-dir.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defconst org-odt-styles-dir-list
  (list
   (and org-odt-data-dir
	(expand-file-name "./styles/" org-odt-data-dir)) ; bail out
   (expand-file-name "./styles/" org-odt-data-dir)
   (expand-file-name "../etc/styles/" org-odt-lib-dir) ; git
   (expand-file-name "./etc/styles/" org-odt-lib-dir)  ; elpa
   (expand-file-name "./org/" data-directory)	       ; system
   )
  "List of directories to search for OpenDocument styles files.
See `org-odt-styles-dir'.  The entries in this list are populated
heuristically based on the values of `org-odt-lib-dir' and
`org-odt-data-dir'.")