diff options
author | Leonard Richardson <leonardr@segfault.org> | 2015-06-25 06:41:14 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2015-06-25 06:41:14 -0400 |
commit | bc85e533729738de1100fabe23ddc71b41933a7a (patch) | |
tree | 3799810a2b68dba89ba015372c83080729b1a8d5 /doc/source/index.rst | |
parent | 569c50e1744543323e31d3e24aa1c43f0555dc43 (diff) |
Fixed syntax errors in documentation.
Diffstat (limited to 'doc/source/index.rst')
-rw-r--r-- | doc/source/index.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index ef3ca7e..bab20d8 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -270,7 +270,7 @@ This table summarizes the advantages and disadvantages of each parser library: | lxml's HTML parser | ``BeautifulSoup(markup, "lxml")`` | * Very fast | * External C dependency | | | | * Lenient | | +----------------------+--------------------------------------------+--------------------------------+--------------------------+ -| lxml's XML parser | ``BeautifulSoup(markup, "lxml-xml")`` | * Very fast | * External C dependency | +| lxml's XML parser | ``BeautifulSoup(markup, "lxml-xml")`` | * Very fast | * External C dependency | | | ``BeautifulSoup(markup, "xml")`` | * The only currently supported | | | | | XML parser | | +----------------------+--------------------------------------------+--------------------------------+--------------------------+ @@ -2577,7 +2577,7 @@ constructor. Beautiful Soup assumes that a document has a single encoding, whatever it might be. If you pass it a document that contains both UTF-8 and Windows-1252, it's likely to think the whole document is Windows-1252, and the document will come out looking like -` ☃☃☃“I like snowmen!”`. +``☃☃☃“I like snowmen!”``. ``UnicodeDammit.detwingle()`` is new in Beautiful Soup 4.1.0. |