class Oga::HTML::SaxParser

SAX parser for HTML documents. See the documentation of {Oga::XML::SaxParser} for more information.

Public Class Methods

new(handler, data, options = {}) click to toggle source

@see [Oga::XML::SaxParser#initialize]

Calls superclass method
# File lib/oga/html/sax_parser.rb, line 7
def initialize(handler, data, options = {})
  options = options.merge(:html => true)

  super(handler, data, options)
end