Parser a document contained in args. Nokogiri will try to guess what type of document you are attempting to parse. For more information, see Nokogiri.parse
To specify the type of document, use Nokogiri.XML or Nokogiri.HTML.
# File lib/nokogiri.rb, line 120 120: def Nokogiri(*args, &block) 121: if block_given? 122: builder = Nokogiri::HTML::Builder.new(&block) 123: return builder.doc.root 124: else 125: Nokogiri.parse(*args) 126: end 127: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.