class Nokogiri::HTML5::DocumentFragment

Attributes

document[RW]
errors[RW]

Public Class Methods

new(doc, tags = nil, ctx = nil, options = {}) click to toggle source

Create a document fragment.

# File lib/nokogumbo/html5/document_fragment.rb, line 10
def initialize(doc, tags = nil, ctx = nil, options = {})
  self.document = doc
  self.errors = []
  return self unless tags

  max_attributes = options[:max_attributes] || Nokogumbo::DEFAULT_MAX_ATTRIBUTES
  max_errors = options[:max_errors] || Nokogumbo::DEFAULT_MAX_ERRORS
  max_depth = options[:max_tree_depth] || Nokogumbo::DEFAULT_MAX_TREE_DEPTH
  tags = Nokogiri::HTML5.read_and_encode(tags, nil)
  Nokogumbo.fragment(self, tags, ctx, max_attributes, max_errors, max_depth)
end
parse(tags, encoding = nil, options = {}) click to toggle source

Parse a document fragment from tags, returning a Nodeset.

# File lib/nokogumbo/html5/document_fragment.rb, line 29
def self.parse(tags, encoding = nil, options = {})
  doc = HTML5::Document.new
  tags = HTML5.read_and_encode(tags, encoding)
  doc.encoding = 'UTF-8'
  new(doc, tags, nil, options)
end

Public Instance Methods

serialize(options = {}, &block) click to toggle source
# File lib/nokogumbo/html5/document_fragment.rb, line 22
def serialize(options = {}, &block)
  # Bypass XML::Document.serialize which doesn't support options even
  # though XML::Node.serialize does!
  XML::Node.instance_method(:serialize).bind(self).call(options, &block)
end