# File lib/action_view/helpers/text_helper.rb, line 237
      def textilize(text)
        if text.blank?
          ""
        else
          textilized = RedCloth.new(text, [ :hard_breaks ])
          textilized.hard_breaks = true if textilized.respond_to?(:hard_breaks=)
          textilized.to_html
        end
      end