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
I use Pandoc with the option --from=gfm for GitHub Flavored Markdown like this:
--from=gfm
$ pandoc my_file.md --from=gfm -t html -o my_file.html