Marked Preview for BBEdit
I may be working in BBEdit more, but I still love Marked and Multimarkdown Composer.[1]
Here’s a couple of AppleScripts to open the current BBEdit document in those two great applications.
try
tell application "BBEdit"
set myFile to get file of front document of window 1
end tell
tell application "Marked"
activate
open myFile
end tell
end try
Just replace “Marked” for “Multimarkdown Composer” as needed. This script will only work if the current file in BBEdit has been saved to disk. If it’s an unsaved draft, then BBEdit does provides its own preview functionality.
-
Affiliate links ↩