|
1 | 1 | """
|
2 |
| -HTML parsing library based on the WHATWG"HTML5" |
3 |
| -specification. The parser is designed to be compatible with existing |
4 |
| -HTML found in the wild and implements well-defined error recovery that |
| 2 | +HTML parsing library based on the`WHATWGHTML specification |
| 3 | +<https://whatwg.org/html>`_. The parser is designed to be compatible with |
| 4 | +existingHTML found in the wild and implements well-defined error recovery that |
5 | 5 | is largely compatible with modern desktop web browsers.
|
6 | 6 |
|
7 | 7 | Example usage::
|
|
12 | 12 |
|
13 | 13 | For convenience, this module re-exports the following names:
|
14 | 14 |
|
15 |
| -* :func:`~.html5parser.parse`, :func:`~.html5parser.parseFragment`, and :class:`~.html5parser.HTMLParser` |
| 15 | +* :func:`~.html5parser.parse` |
| 16 | +* :func:`~.html5parser.parseFragment` |
| 17 | +* :class:`~.html5parser.HTMLParser` |
16 | 18 | * :func:`~.treebuilders.getTreeBuilder`
|
17 | 19 | * :func:`~.treewalkers.getTreeWalker`
|
18 | 20 | * :func:`~.serializer.serialize`
|
|