all repos — markup @ 58b57b5fc86e8c1f98aa47d62397ba542ce9e4d9

The code we use to render README.your_favorite_markup

lib/github/markups.rb (view raw)

1markup(:markdown, /md|mkdn?|markdown/) do |content|
2  Markdown.new(content).to_html
3end
4
5markup(:redcloth, /textile/) do |content|
6  RedCloth.new(content).to_html
7end
8
9command(:rest2html, /rest|rst/)