Thursday, November 30, 2017

Pandoc --- a universal document converter

Pandoc is a free and open source command line tool to convert documents from one format to another. It runs on Windows, macOS, Linux and supports many file formats including HTML, Word, EPUB, LaTeX, PDF, Markdown and so on. You can try it online at: https://pandoc.org/try/

Official Site: https://pandoc.org

1 comment:

  1. https://pandoc.org/getting-started.html
    Example usage, convert markdown to html:
    pandoc test.md -f markdown -t html -s -o test.html

    ReplyDelete