Skip to content

Instantly share code, notes, and snippets.

@bsodmike
Created September 5, 2011 10:24
Show Gist options
  • Save bsodmike/1194643 to your computer and use it in GitHub Desktop.
Save bsodmike/1194643 to your computer and use it in GitHub Desktop.
Helper method to safely sanitise text with RedCloth
module ApplicationHelper
def redcloth_sanitize(text)
# http://www.jeffroush.com/technotes/2011/01/02/using-textile-in-rails/
sanitize(RedCloth.new(text, [:filter_html, :filter_styles]).to_html)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment