Remove the GFM parser; it makes no sense

The new versions of GitHub::Markup will automatically render GFM for
Markdown documents if the necessary gems are installed.
This commit is contained in:
Vicent Martí
2012-04-12 22:52:45 +02:00
parent 7317a9ba2d
commit 0cc4c9f2c2
2 changed files with 0 additions and 65 deletions
-5
View File
@@ -456,11 +456,6 @@ np.array([[2,2],[1,3]],np.float)
# rendered with Gollum::Markup
page, rendered = render_page(content)
assert_markup_highlights_code Gollum::Markup, rendered
if Gollum.const_defined?(:MarkupGFM)
rendered_gfm = Gollum::MarkupGFM.new(page).render
assert_markup_highlights_code Gollum::MarkupGFM, rendered_gfm
end
end
def assert_markup_highlights_code(markup_class, rendered)