diff options
author | Leonard Richardson <leonardr@segfault.org> | 2019-07-16 21:43:28 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2019-07-16 21:43:28 -0400 |
commit | fb871fc76b11f8b182653bdd922360d332c32dc7 (patch) | |
tree | 18cb601d3bc5be872f41d1f605f7870a7ee1bbd5 /doc/source | |
parent | fc71bc1c04e0495c34a5b78ec21895e32848b344 (diff) |
Prep for release.
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/index.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index 9ef8ef4..cea1be5 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -266,9 +266,9 @@ This table summarizes the advantages and disadvantages of each parser library: +----------------------+--------------------------------------------+--------------------------------+--------------------------+ | Parser | Typical usage | Advantages | Disadvantages | +----------------------+--------------------------------------------+--------------------------------+--------------------------+ -| Python's html.parser | ``BeautifulSoup(markup, "html.parser")`` | * Batteries included | * Not very lenient | -| | | * Decent speed | (before Python 2.7.3 | -| | | * Lenient (as of Python 2.7.3 | or 3.2.2) | +| Python's html.parser | ``BeautifulSoup(markup, "html.parser")`` | * Batteries included | * Not as fast as lxml, | +| | | * Decent speed | less lenient than | +| | | * Lenient (As of Python 2.7.3 | html5lib. | | | | and 3.2.) | | +----------------------+--------------------------------------------+--------------------------------+--------------------------+ | lxml's HTML parser | ``BeautifulSoup(markup, "lxml")`` | * Very fast | * External C dependency | |