# File lib/action_view/helpers/sanitize_helper.rb, line 78
      def strip_tags(html)
        returning self.class.full_sanitizer.sanitize(html) do |sanitized|
          if sanitized
            sanitized.html_safe!
          end
        end
      end