global
def Nokogiri(*args, &block)
attempting to parse. For more information, see Nokogiri.parse
Parse a document contained in +args+. Nokogiri will try to guess what type of document you are
##
def Nokogiri(*args, &block) if block Nokogiri::HTML4::Builder.new(&block).doc.root else Nokogiri.parse(*args) end end