html_paser library

Functions

getElementNameTuple(Element e) → Pair<String, String?>
Convenience function to get the pair of namespace and localName.
parse(dynamic input, {String? encoding, bool generateSpans = false, String? sourceUrl}) Document
Parse the input html5 document into a tree. The input can be a String, List<int> of bytes or an HtmlTokenizer.
parseFragment(dynamic input, {String container = 'div', String? encoding, bool generateSpans = false, String? sourceUrl}) DocumentFragment
Parse the input html5 document fragment into a tree. The input can be a String, List<int> of bytes or an HtmlTokenizer. The container element can optionally be specified, otherwise it defaults to "div".

Typedefs

TokenProccessor = Token Function(Token token)

Exceptions / Errors

ParseError
Error in parsed document.