Better textilize
This my not be what you need, but it's exactly what I need. :)
def textilize(text) RedCloth.new(text.gsub(/</, '<').gsub(/>/, '>')).to_html end
11375 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
def textilize(text) RedCloth.new(text.gsub(/</, '<').gsub(/>/, '>')).to_html end