Skip to content

Instantly share code, notes, and snippets.

@zwily
Created February 20, 2013 19:26
Show Gist options
  • Save zwily/4998484 to your computer and use it in GitHub Desktop.
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)
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