diff options
author | FeRD (Frank Dana) <ferdnyc@gmail.com> | 2021-12-22 20:16:46 -0500 |
---|---|---|
committer | FeRD (Frank Dana) <ferdnyc@gmail.com> | 2021-12-22 20:16:46 -0500 |
commit | 67b1c154602cd2e196d6477f764bbae961c2ccb5 (patch) | |
tree | f2652b6cdf3695ee97d9afc3e15d037ba07d7671 /doc | |
parent | a9abf1b4a355959fd2410e7384dd2ba83a9f4e39 (diff) |
Correct documentation on parser differences
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index caa46c9..55be9fc 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -2514,7 +2514,7 @@ parser:: BeautifulSoup("<a></p>", "html.parser") # <a></a> -Like html5lib, this parser ignores the closing </p> tag. Unlike +Like lxml, this parser ignores the closing </p> tag. Unlike html5lib or lxml, this parser makes no attempt to create a well-formed HTML document by adding <html> or <body> tags. |