A simple CLI that will preview a markdown file in a browser.
There are binaries for Linux, Mac, and Windows in the releases page.
Or use go get
:
go get github.com/andschneider/mdp
- Pass in the name of the file you'd like to preview with the
-file
flag.
mdp -file README.md
-
To skip the autopreview use the
-skip
flag. This also doesn't remove the generated .html file if you'd like to save or view it later. -
Use
-help
flag to display the full usage information.
mdp - preview markdown in your browser.
Usage information:
-file string
Markdown file to preview.
-skip
Skip auto-preview and prevent auto-delete of html file.
-version
Print version and exit.
This repo is based on chapter 3 from the book Powerful Command-Line Applications in Go