Class: Nokogiri::HTML::Document::EncodingReader::JumpSAXHandler

Inherits:
SAXHandler show all
Defined in:
lib/nokogiri/html/document.rb

Instance Attribute Summary

Attributes inherited from SAXHandler

#encoding

Instance Method Summary collapse

Methods inherited from XML::SAX::Document

#cdata_block, #characters, #comment, #end_document, #end_element, #end_element_namespace, #error, #start_document, #start_element_namespace, #warning, #xmldecl

Constructor Details

#initialize(jumptag) ⇒ JumpSAXHandler

Returns a new instance of JumpSAXHandler.



160
161
162
163
# File 'lib/nokogiri/html/document.rb', line 160

def initialize(jumptag)
  @jumptag = jumptag
  super()
end

Instance Method Details

#start_element(name, attrs = []) ⇒ Object



165
166
167
168
169
# File 'lib/nokogiri/html/document.rb', line 165

def start_element(name, attrs = [])
  super
  throw @jumptag, @encoding if @encoding
  throw @jumptag, nil if name =~ /\A(?:div|h1|img|p|br)\z/
end