Function: org-odt-convert

org-odt-convert is an autoloaded, interactive and byte-compiled function defined in ox-odt.el.gz.

Signature

(org-odt-convert &optional IN-FILE OUT-FMT OPEN)

Documentation

Convert IN-FILE to format OUT-FMT using a command line converter.

IN-FILE is the file to be converted. If unspecified, it defaults to variable buffer-file-name(var)/buffer-file-name(fun). OUT-FMT is the desired output format. Use org-odt-convert-process as the converter. If OPEN is non-nil then the newly converted file is opened using org-open-file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;###autoload
(defun org-odt-convert (&optional in-file out-fmt open)
  "Convert IN-FILE to format OUT-FMT using a command line converter.
IN-FILE is the file to be converted.  If unspecified, it defaults
to variable `buffer-file-name'.  OUT-FMT is the desired output
format.  Use `org-odt-convert-process' as the converter.  If OPEN
is non-nil then the newly converted file is opened using
`org-open-file'."
  (interactive
   (append (org-odt-convert-read-params) current-prefix-arg))
  (org-odt-do-convert in-file out-fmt open))