method
textile
textile(body, lite_mode=false)
private
Hide source
# File railties/guides/rails_guides/generator.rb, line 201 def textile(body, lite_mode=false) t = RedCloth.new(body) t.hard_breaks = false t.lite_mode = lite_mode t.to_html(:notestuff, :plusplus, :code) end


