Skip to content

Instantly share code, notes, and snippets.

@ckozus
Created March 29, 2012 18:11
Show Gist options
  • Save ckozus/2241316 to your computer and use it in GitHub Desktop.
Save ckozus/2241316 to your computer and use it in GitHub Desktop.
def textilize_description
if changed.include?('description')
self.description_html = textilize(self.description)
end
end
def textilize(text)
if text.blank?
""
else
doc = RedCloth.new(text || '')
doc.filter_html = true
doc.to_html
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment