-
-
Save promicrobial/0a57784645b762fb25061b1f7ee61e36 to your computer and use it in GitHub Desktop.
Convert Markdown to PDF within Sublime Text using Pandoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cmd": ["pandoc --pdf-engine=xelatex --filter=pandoc-citeproc -o '$file_base_name.pdf' '$file_name' && xdg-open '$file_base_name.pdf'"], | |
"selector": "text.html.markdown", | |
"shell": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forked from keuv-grvl and modified to reflect pandoc v2.9.2.1 syntax and includes an additional command to automatically open the rendered pdf after building is complete.