Earlier quoted context omitted.
I much prefer tools that run in a browser (both for convenience and for sand-boxing), but... I think a command line tool is better for a simple file system-based case like this, at least beyond an initial first impression. My workflow is that I write my posts in VS Code, and then if I want to preview or upload, I just hop over to the console and type a command (no mouse needed). Deno's built-in sand boxing is the mos…
> I think a command line tool is better Why not both? It doesn't need to be mutually exclusive; write md2blog.html so it can run either from the command-line or be opened in the browser—whichever is preferable (easiest) at the time. I don't understand your comment about durable storage. If you have a directory of Markdown files on your disk, that's already durable storage. I'm just talking about tweaking the developm…
> To build and test the site locally (with automatic reloading), run:
> md2blog --clean --serve
> And open a browser to the "localhost" URL that is written to the console. You can kill the server with Ctrl+C.
as described in https://jaredkrinke.github.io/md2blog/quick-start.html