Pandoc Convert Document
Pandoc is a universal document converter, such as PDF, Docx, and others.
Install
Download from the Windows package installer
Alternatively, you can install pandoc using Chocolatey:
choco install pandoc
Chocolatey can also install other software that integrates with Pandoc. For example, to install rsvg-convert (from librsvg, covering formats without SVG support), Python (to use Pandoc filters), and MiKTeX (to typeset PDFs with LaTeX):
choco install rsvg-convert python miktex
Example Usages
Convert Markdown to Docx
pandoc -s -o output.docx input.md
Convert Markdown to PDF
pandoc -s -o output.pdf input.md
Reference
Last updated
Was this helpful?