Variable: org-odt-content-template-file

org-odt-content-template-file is a customizable variable defined in ox-odt.el.gz.

Value

nil

Documentation

Template file for "content.xml".

The exporter embeds the exported content just before
"</office:text>" element.

If unspecified, the file named "OrgOdtContentTemplate.xml" under org-odt-styles-dir is used.

This variable was added, or its default value changed, in Emacs 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Document styles

(defcustom org-odt-content-template-file nil
  "Template file for \"content.xml\".
The exporter embeds the exported content just before
\"</office:text>\" element.

If unspecified, the file named \"OrgOdtContentTemplate.xml\"
under `org-odt-styles-dir' is used."
  :type '(choice (const nil)
		 (file))
  :version "24.3")