The version of Nokogiri you are using
More complete version information about libxml
Parse HTML. Convenience method for Nokogiri::HTML::Document.parse
# File lib/nokogiri/html.rb, line 13 def HTML thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_HTML, &block Nokogiri::HTML::Document.parse(thing, url, encoding, options, &block) end
Parse XML. Convenience method for Nokogiri::XML::Document.parse
# File lib/nokogiri/xml.rb, line 32 def XML thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block Nokogiri::XML::Document.parse(thing, url, encoding, options, &block) end
Create a Nokogiri::XSLT::Stylesheet with stylesheet.
Example:
xslt = Nokogiri::XSLT(File.read(ARGV[0]))
# File lib/nokogiri/xslt.rb, line 12 def XSLT stylesheet, modules = {} XSLT.parse(stylesheet, modules) end
Generated with the Darkfish Rdoc Generator 2.