In Files

Class Index [+]

Quicksearch

Nokogiri

Nokogiri parses and searches XML/HTML very quickly, and also has correctly implemented CSS3 selector support as well as XPath support.

Parsing a document returns either a Nokogiri::XML::Document, or a Nokogiri::HTML::Document depending on the kind of document you parse.

Here is an example:

  require 'nokogiri'
  require 'open-uri'

  # Get a Nokogiri::HTML:Document for the page we’re interested in...

  doc = Nokogiri::HTML(open('http://www.google.com/search?q=tenderlove'))

  # Do funky things with it using Nokogiri::XML::Node methods...

  ####
  # Search for nodes by css
  doc.css('h3.r a.l').each do |link|
    puts link.content
  end

See Nokogiri::XML::Node#css for more information about CSS searching. See Nokogiri::XML::Node#xpath for more information about XPath searching.


Constants

VERSION

The version of Nokogiri you are using

VERSION_INFO

More complete version information about libxml

Public Class Methods

HTML(thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_HTML, &block) click to toggle source
 

Parse HTML. Convenience method for Nokogiri::HTML::Document.parse

    # File lib/nokogiri/html.rb, line 14
14:     def HTML thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_HTML, &block
15:       Nokogiri::HTML::Document.parse(thing, url, encoding, options, &block)
16:     end
Slop(*args, &block) click to toggle source
 

Parse a document and add the Slop decorator. The Slop decorator implements method_missing such that methods may be used instead of CSS or XPath. For example:

  doc = Nokogiri::Slop(<<-eohtml)
    <html>
      <body>
        <p>first</p>
        <p>second</p>
      </body>
    </html>
  eohtml
  assert_equal('second', doc.html.body.p[1].text)
     # File lib/nokogiri.rb, line 108
108:     def Slop(*args, &block)
109:       Nokogiri(*args, &block).slop!
110:     end
XML(thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block) click to toggle source
 

Parse XML. Convenience method for Nokogiri::XML::Document.parse

    # File lib/nokogiri/xml.rb, line 32
32:     def XML thing, url = nil, encoding = nil, options = XML::ParseOptions::DEFAULT_XML, &block
33:       Nokogiri::XML::Document.parse(thing, url, encoding, options, &block)
34:     end
XSLT(stylesheet, modules = {}) click to toggle source
 

Create a Nokogiri::XSLT::Stylesheet with stylesheet.

Example:

  xslt = Nokogiri::XSLT(File.read(ARGV[0]))
    # File lib/nokogiri/xslt.rb, line 12
12:     def XSLT stylesheet, modules = {}
13:       XSLT.parse(stylesheet, modules)
14:     end
make(input = nil, opts = {}) click to toggle source
 

Create a new Nokogiri::XML::DocumentFragment

    # File lib/nokogiri.rb, line 85
85:     def make input = nil, opts = {}, &blk
86:       if input
87:         Nokogiri::HTML.fragment(input).children.first
88:       else
89:         Nokogiri(&blk)
90:       end
91:     end
parse(string, url = nil, encoding = nil, options = nil) click to toggle source
 

Parse an HTML or XML document. string contains the document.

    # File lib/nokogiri.rb, line 66
66:     def parse string, url = nil, encoding = nil, options = nil
67:       doc =
68:         if string.respond_to?(:read) ||
69:           string =~ /^\s*<[^Hh>]*html/ # Probably html
70:           Nokogiri.HTML(
71:             string,
72:             url,
73:             encoding, options || XML::ParseOptions::DEFAULT_HTML
74:           )
75:         else
76:           Nokogiri.XML(string, url, encoding,
77:                         options || XML::ParseOptions::DEFAULT_XML)
78:         end
79:       yield doc if block_given?
80:       doc
81:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.