# File lib/action_view/helpers/sanitize_helper.rb, line 51
      def sanitize(html, options = {})
        returning self.class.white_list_sanitizer.sanitize(html, options) do |sanitized|
          if sanitized
            sanitized.html_safe!
          end
        end
      end