A terminal utility to display markdown files.
go build
You can then use the resulting mdcat
binary.
mdcat [FILE]...
mdcat
assumes all command-line arguments to be filenames to display on the
terminal. With no arguments, mdcat
waits for input on stdin and produces
the parsed output once it is closed.
mdcat
is based on go-termd, which does all
the work.
- Initial release
Below you'll find a few typical markdown constructs, used to test
mdcat
.
- One
- Two
- Three
(defn some-function
"docstring"
[system foo]
(do-bar-with-system system foo))