#+options: toc:nil num:nil author:nil * Convert files using pandoc Use pandoc with "-s" flag to produce a standalone document and "-o" to redirect output to a file. In the example a file "foo" is converted from ~odt~ to ~org~ #+begin_src bash pandoc -s -o foo.org foo.odt #+end_src Check the manual for more information: #+begin_example bash man pandoc #+end_src