Markdown to PDF using pandoc on FreeBSD

Install pandoc and wkhtmltopdf:
# pkg install pandoc
# pkg install wkhtmltopdf
 
Convert markdown to pdf:
$ pandoc --pdf-engine=wkhtmltopdf  -o test.pdf test.md

Comments