A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/fb55/htmlparser2/wiki/Parser-options below:

Parser options · fb55/htmlparser2 Wiki · GitHub

const parser = new htmlparser.Parser(handler /*: Object */, options /*?: Object */);
parser.write(chunk);
// ...
parser.write(chunk);
/ ...
parser.end();

Note: It is recommended to never disable the decodeEntities option (as described below) to the constructor; see #105 for a potential issue.

Note: When streaming non-ASCII data, make sure to use a StringDecoder in order to prevent certain non ASCII characters from being chopped apart.

Names for the keys of the handler object. Only functions are valid values (the parser will break otherwise).

write (alias: parseChunk)

Parses a chunk of data and calls the corresponding callbacks.

Parses the end of the buffer and clears the stack, calls onend.

Resets buffer & stack, calls onreset.

Resets the parser, parses the data & calls end.

Indicates whether special tags (<script> and <style>) should get special treatment and if "empty" tags (eg. <br>) can have children. If false, the content of special tags will be text only.

For feeds and other XML content (documents that don't consist of HTML), set this to true. Default: false.

If set to true, entities within the document will be decoded. Defaults to true.

If set to true, all tags will be lowercased. If xmlMode is disabled, this defaults to true.

Option: lowerCaseAttributeNames

If set to true, all attribute names will be lowercased. If xmlMode is disabled, this defaults to true.

If set to true, CDATA sections will be recognized as text even if the xmlMode option is not enabled. NOTE: If xmlMode is set to true then CDATA sections will always be recognized as text.

Option: recognizeSelfClosing

If set to true, self-closing tags will trigger the onclosetag event even if xmlMode is not set to true. NOTE: If xmlMode is set to true then self-closing tags will always be recognized.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4