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
pandoc with browser works well for me.
pandoc
browser
Usage: cat README.md | pandoc -f markdown_github | browser
cat README.md | pandoc -f markdown_github | browser
Installation (Assuming you are using Mac OSX):
$ brew install pandoc
$ brew install browser
Or on Debian/Ubuntu: apt-get install pandoc browser
apt-get install pandoc browser