method
textile
textile(body)
public
Hide source
# File railties/guides/rails_guides/generator.rb, line 111 def textile(body) # If the issue with notextile is fixed just remove the wrapper. with_workaround_for_notextile(body) do |body| t = RedCloth.new(body) t.hard_breaks = false t.to_html(:notestuff, :plusplus, :code, :tip) end end


