Sha256: fff2ac3824533973df2e4833f0b57a966a5411473318fad97f23a9d1c528b724
Contents?: true
Size: 1.39 KB
Versions: 54
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true module Nokogiri module HTML class DocumentFragment < Nokogiri::XML::DocumentFragment #### # Create a Nokogiri::XML::DocumentFragment from +tags+, using +encoding+ def self.parse(tags, encoding = nil) doc = HTML::Document.new encoding ||= if tags.respond_to?(:encoding) encoding = tags.encoding if encoding == ::Encoding::ASCII_8BIT 'UTF-8' else encoding.name end else 'UTF-8' end doc.encoding = encoding new(doc, tags) end def initialize(document, tags = nil, ctx = nil) return self unless tags if ctx preexisting_errors = document.errors.dup node_set = ctx.parse("<div>#{tags}</div>") node_set.first.children.each { |child| child.parent = self } unless node_set.empty? self.errors = document.errors - preexisting_errors else # This is a horrible hack, but I don't care path = if /^\s*?<body/i.match?(tags) "/html/body" else "/html/body/node()" end temp_doc = HTML::Document.parse("<html><body>#{tags}", nil, document.encoding) temp_doc.xpath(path).each { |child| child.parent = self } self.errors = temp_doc.errors end children end end end end
Version data entries
54 entries across 52 versions & 3 rubygems