Function: org-odt-reachable-formats
org-odt-reachable-formats is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt-reachable-formats IN-FMT)
Documentation
Return list of formats to which IN-FMT can be converted.
The list of the form (OUTPUT-FMT-1 OUTPUT-FMT-2 ...).
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
(defun org-odt-reachable-formats (in-fmt)
"Return list of formats to which IN-FMT can be converted.
The list of the form (OUTPUT-FMT-1 OUTPUT-FMT-2 ...)."
(copy-sequence
(apply #'append (mapcar
(lambda (e) (mapcar #'car (cdr e)))
(org-odt-do-reachable-formats in-fmt)))))