Serves a markdown file.
# config.ru
require 'rack/markdown'
run Rack::Markdown.new('path/to/file.markdown')
Then run:
rackup
And visit localhost:9292.
If you're using a newer version of Ruby, you'll need to run a thin server instead. There is an issue with Pygments.
Yep- it looks almost identical to Github's markdown parser.