Skip to content

Instantly share code, notes, and snippets.

@ihoka
Created October 29, 2009 17:30
Show Gist options
  • Save ihoka/221622 to your computer and use it in GitHub Desktop.
Save ihoka/221622 to your computer and use it in GitHub Desktop.
def textilize(text, *options)
options ||= [:hard_breaks]
if text.blank?
""
else
textilized = RedCloth.new(text, options)
textilized.to_html
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment