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:
- open Tools > Build System > New Build System
- change the code to the following:
{
"shell_cmd": "open -a \"/Applications/Marked 2.app\" \"$file\""
}
- close the tab and save the file as Markdown.sublime-build
- open Tools > Build System and set it to Automatic
- 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!