Skip to main content

Using Pandoc

Pandoc is a tool for converting between different file formats. It can be used to convert between a variety of formats, including Markdown, HTML, LaTeX, and many others.

To get started, install Pandoc. You can download the latest version from here.

To install Pandoc on a Mac, you can use the following command:

brew install pandoc

Pandoc with GitHub Actions

Pandoc can be used with GitHub Actions. For example, if you want to convert a Markdown file to HTML, you can use the following command:

pandoc -f markdown -t html -o output.html input.md

For a more details on using Pandoc with GitHub Actions, see here.

References