Package | Description |
---|---|
org.jsoup.parser |
Contains the HTML parser, tag specifications, and HTML tokeniser.
|
Modifier and Type | Field and Description |
---|---|
private ParseErrorList |
Parser.errors |
private ParseErrorList |
Tokeniser.errors |
Modifier and Type | Method and Description |
---|---|
ParseErrorList |
Parser.getErrors()
Retrieve the parse errors, if any, from the last parse.
|
static ParseErrorList |
ParseErrorList.noTracking() |
static ParseErrorList |
ParseErrorList.tracking(int maxSize) |
Modifier and Type | Method and Description |
---|---|
static java.util.List<Node> |
Parser.parseFragment(java.lang.String fragmentHtml,
Element context,
java.lang.String baseUri,
ParseErrorList errorList)
Parse a fragment of HTML into a list of nodes.
|
Constructor and Description |
---|
ParseErrorList(ParseErrorList copy)
Create a new ParseErrorList with the same settings, but no errors in the list
|
Tokeniser(CharacterReader reader,
ParseErrorList errors) |