Marked 2 live markdown preview with Sublime Text

It is possible to have live markdown preview with the Marked 2 app (even from the Mac AppStore) while editing under Sublime Text – using a custom Build System! To do so, follow these steps:

  1. open Tools > Build System > New Build System
  2. change the code to the following:
{
	"shell_cmd": "open -a \"/Applications/Marked 2.app\" \"$file\""
}
  1. close the tab and save the file as Markdown.sublime-build
  2. open Tools > Build System and set it to Automatic
  3. from now on, when editing a Markdown file just press Build (cmd + B) and Marked 2 should pop right up!

Thanks to Zachary Szewczyk for publishing this, visit the original post here!