Variable: org-odt-preferred-output-format

org-odt-preferred-output-format is a customizable variable defined in ox-odt.el.gz.

Value

nil

Documentation

Automatically post-process to this format after exporting to "odt".

Command org-odt-export-to-odt exports first to "odt" format and then uses org-odt-convert-process to convert the resulting document to this format. During customization of this variable, the list of valid values are populated based on org-odt-convert-capabilities.

You can set this option on per-file basis using file local values. See Info node (emacs) File Variables.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defcustom org-odt-preferred-output-format nil
  "Automatically post-process to this format after exporting to \"odt\".
Command `org-odt-export-to-odt' exports first to \"odt\" format
and then uses `org-odt-convert-process' to convert the
resulting document to this format.  During customization of this
variable, the list of valid values are populated based on
`org-odt-convert-capabilities'.

You can set this option on per-file basis using file local
values.  See Info node `(emacs) File Variables'."
  :version "24.1"
  :type '(choice :convert-widget
		 (lambda (w)
		   (apply 'widget-convert (widget-type w)
			  (eval (car (widget-get w :args)))))
		 `((const :tag "None" nil)
		   ,@(mapcar (lambda (c)
			       `(const :tag ,c ,c))
			     (org-odt-reachable-formats "odt")))))