bash-tutorial/tutorial/pandoc.org

19 lines
375 B
Org Mode
Raw Normal View History

2022-07-18 14:23:28 +02:00
#+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