# File lib/rubyful_soup.rb, line 533
  def feed(text)    
    if @avoid_parser_problems
      #before = text.clone
      @avoid_parser_problems.each do |re, fix|
        if fix.is_a? String
          text.gsub!(re, fix)
        else
          text.gsub!(re) { |x| fix.call(x) }
        end
      end
      #if before != text
      #  puts "Changed from #{before} to #{text}"
      #end          
    end
    super
  end