I\'m wondering if there is a command line utility for taking a GitHub flavored Markdown file and rendering it to HTML.
I\'m using a GitHub wiki to create website con
Improving upon @barry-stae's solution. Stick this snippet in ~/.bashrc
function mdviewer(){ pandoc $* | lynx -stdin }
Then we can quickly view the file from the command-line. Also works nicely over SSH/Telnet sessions.
mdviewer README.md