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
To read a README.md file in the terminal I use:
pandoc README.md | lynx -stdin
Pandoc outputs it in HTML format, which Lynx renders in your terminal.
It works great: It fills my terminal, shortcuts are shown below, I can scroll through, and the links work! There is only one font size though, but the colors + indentation + alignment make up for that.
Installation:
sudo apt-get install pandoc lynx