Sha256: 857a98fd150737839b03e660c2b77a5c635d5b17b9918efc14e1bb805c953a4d

Contents?: true

Size: 1.93 KB

Versions: 307

Compression:

Stored size: 1.93 KB

Contents

# frozen_string_literal: true

module Nokogiri
  module HTML4
    ###
    # Nokogiri lets you write a SAX parser to process HTML but get HTML correction features.
    #
    # See Nokogiri::HTML4::SAX::Parser for a basic example of using a SAX parser with HTML.
    #
    # For more information on SAX parsers, see Nokogiri::XML::SAX
    module SAX
      ###
      # This class lets you perform SAX style parsing on HTML with HTML error correction.
      #
      # Here is a basic usage example:
      #
      #   class MyDoc < Nokogiri::XML::SAX::Document
      #     def start_element name, attributes = []
      #       puts "found a #{name}"
      #     end
      #   end
      #
      #   parser = Nokogiri::HTML4::SAX::Parser.new(MyDoc.new)
      #   parser.parse(File.read(ARGV[0], mode: 'rb'))
      #
      # For more information on SAX parsers, see Nokogiri::XML::SAX
      class Parser < Nokogiri::XML::SAX::Parser
        ###
        # Parse html stored in +data+ using +encoding+
        def parse_memory(data, encoding = "UTF-8")
          raise TypeError unless String === data
          return if data.empty?

          ctx = ParserContext.memory(data, encoding)
          yield ctx if block_given?
          ctx.parse_with(self)
        end

        ###
        # Parse given +io+
        def parse_io(io, encoding = "UTF-8")
          check_encoding(encoding)
          @encoding = encoding
          ctx = ParserContext.io(io, ENCODINGS[encoding])
          yield ctx if block_given?
          ctx.parse_with(self)
        end

        ###
        # Parse a file with +filename+
        def parse_file(filename, encoding = "UTF-8")
          raise ArgumentError unless filename
          raise Errno::ENOENT unless File.exist?(filename)
          raise Errno::EISDIR if File.directory?(filename)

          ctx = ParserContext.file(filename, encoding)
          yield ctx if block_given?
          ctx.parse_with(self)
        end
      end
    end
  end
end

Version data entries

307 entries across 307 versions & 10 rubygems

Version Path
nokogiri-1.13.6-x86-mingw32 lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-x86-linux lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-x64-mingw32 lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-x64-mingw-ucrt lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-java lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-arm64-darwin lib/nokogiri/html4/sax/parser.rb
nokogiri-1.13.6-aarch64-linux lib/nokogiri/html4/sax/parser.rb