Create a Pandoc Build System in Sublime

  1. Install Pandoc
  2. Install SumatraPDF
  3. 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",
}