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 and @Sandeep answers for regular users of elinks you would add the following to .bashrc:
function mdviewer() { pandoc $* | elinks --force-html }
Don't forget to install pandoc (and elinks).