all repos — markup @ 215b7790e83d29821afc43aff8534c840ad9a4f5

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
 9markup('github/markup/rest', /rest|rst/) do |content|
10  GitHub::Markup::ReST.translate(content)
11end
12