pandoc

Convert between markup formats like Markdown, HTML, PDF, and Word documents.

brewmacoslinux
Try with needOr install directly
Source

About

Swiss-army knife of markup format conversion

Commands

pandoc

Examples

convert markdown file to HTML$ pandoc input.md -o output.html
convert markdown to PDF document$ pandoc input.md -o output.pdf
convert HTML to markdown$ pandoc input.html -t markdown -o output.md
convert markdown to Word document$ pandoc input.md -o output.docx
convert multiple markdown files to single HTML with table of contents$ pandoc file1.md file2.md --toc -o combined.html