class Nokogiri::HTML5::Document

def parse(


Nokogiri::HTML5::Document.parse(input) { |c| c[:parse_noscript_content_as_text] = true }

configuration block parameter.
*Example:* Parse a string setting the +:parse_noscript_content_as_text+ option using the

Nokogiri::HTML5::Document.parse(socket, encoding: "ISO-8859-1", max_errors: 10)

*Example:* Parse a string with a specific encoding and custom max errors limit.

[Returns] Nokogiri::HTML5::Document

⚠ Note that +url:+ and +encoding:+ cannot be set by the configuration block.

input is parsed. See rdoc-ref:HTML5@Parsing+options for a list of available options.
If present, the block will be passed a Hash object to modify with parse options before the
[Yields]

See rdoc-ref:HTML5@Parsing+options for a complete description of these parsing options.

elements as text. (default +false+)
- +parse_noscript_content_as_text:+ (Boolean) Whether to parse the content of +noscript+

element. (default +Nokogiri::Gumbo::DEFAULT_MAX_ATTRIBUTES+)
- +max_attributes:+ (Integer) The maximum number of attributes allowed on an

+Nokogiri::Gumbo::DEFAULT_MAX_TREE_DEPTH+)
- +max_tree_depth:+ (Integer) The maximum depth of the parse tree. (default

+Nokogiri::Gumbo::DEFAULT_MAX_ERRORS+ which is currently 0)
- +max_errors:+ (Integer) The maximum number of parse errors to record. (default

content.
document. When not provided, the encoding will be determined based on the document
- +encoding:+ (Encoding) The name of the encoding that should be used when processing the
[Optional Keyword Arguments]

- +url:+ (String) the base URI of the document.
[Optional Parameters]

- +input+ (String | IO) the \HTML content to be parsed.
[Required Parameters]

parameter.
encoding of +input+ if it can be determined, or else falls back to the +encoding:+
Parse \HTML input with a parser compliant with the HTML5 spec. This method uses the

parse(input, **options) → HTML5::Document
parse(input, url: encoding:) { |options| ... } → HTML5::Document
parse(input) { |options| ... } → HTML5::Document
:call-seq:
def parse(
  string_or_io,
  url_ = nil, encoding_ = nil,
  url: url_, encoding: encoding_,
  **options, &block
)
  yield options if block
  string_or_io = "" unless string_or_io
  if string_or_io.respond_to?(:encoding) && string_or_io.encoding != Encoding::ASCII_8BIT
    encoding ||= string_or_io.encoding.name
  end
  if string_or_io.respond_to?(:read) && string_or_io.respond_to?(:path)
    url ||= string_or_io.path
  end
  unless string_or_io.respond_to?(:read) || string_or_io.respond_to?(:to_str)
    raise ArgumentError, "not a string or IO object"
  end
  do_parse(string_or_io, url, encoding, **options)
end