# File lib/liquid/standardfilters.rb, line 61
    def strip_html(input)
      input.to_s.gsub(/<script.*?<\/script>/, '').gsub(/<.*?>/, '')
    end