ihoka (owner)

Revisions

gist: 221622 Download_button fork
public
Public Clone URL: git://gist.github.com/221622.git
Embed All Files: show embed
textilize.rb #
1
2
3
4
5
6
7
8
9
10
def textilize(text, *options)
  options ||= [:hard_breaks]
 
  if text.blank?
    ""
  else
    textilized = RedCloth.new(text, options)
    textilized.to_html
  end
end