# File lib/action_view/helpers/text_helper.rb, line 245
      def textilize(text, *options)
        options ||= [:hard_breaks]

        if text.blank?
          ""
        else
          textilized = RedCloth.new(text, options)
          textilized.to_html
        end
      end