Pandoc converter

date:

tags: pandoc file conversion

categories: Utilities

There is a useful software application out there called Pandoc which is a Haskell library for converting from one markup format to another through a command line interface. Pandoc can convert between markdown, HTML, and proprietary formats like Microsoft Word.

Installing

The official site for pandoc includes instructions to install on multiple platforms such as Windows, Linux and macOS.

https://pandoc.org/installing.html

Example

See the following example of converting a markdown file to an HTML file:

1
pandoc -o converted_file.html source_file.md

If pandoc is successful, you will now have a new file called converted_file.html.

comments powered by Disqus