Created
February 20, 2013 19:26
-
-
Save zwily/4998484 to your computer and use it in GitHub Desktop.
Add this to your gollum config file to get full GitHub-Flavored Markdown. (including newline behavior)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GitHub::Markdown | |
class << self | |
alias_method :old_render, :render | |
def render(content) | |
render_gfm(content) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment