Using Sublime Text with Markdown
Create a Pandoc Build System in Sublime
- Install Pandoc
- Install SumatraPDF
- I followed this link from Rowan Nicholls to just create a build system so I could get Markdown files converted to PDF that then show up in SumatraPDF viewer, and adapted it just a little because my Sublime Text couldn’t find the SumatraPDF executable.
{
"shell_cmd": "pandoc -o \"$file.pdf\" \"$file\" && start \"C:\\Program Files\\SumatraPDF\" \"$file.pdf\"",
"selector": "text.html.markdown",
}