summaryrefslogtreecommitdiff
path: root/beautifulsoup/builder
AgeCommit message (Collapse)Author
2011-02-19Set up an lxml parser that only parses XML, though it's not very functional yet.Leonard Richardson
2011-02-18Made Unicode, Dammit more PEP-8 compliant.Leonard Richardson
2011-02-18Made Unicode, Dammit more PEP-8 compliant.Leonard Richardson
2011-02-18Don't let html5lib set the original encoding to UTF-8 if the input was ↵Leonard Richardson
actually Unicode.
2011-02-18Pass the user-specified encoding in to html5lib rather than dropping it on ↵Leonard Richardson
the floor.
2011-02-18Have the html5lib builder set the sniffed encoding after parsing, rather ↵Leonard Richardson
than before as happens with lxml.
2011-02-18Made conversion of markup to Unicode the responsibility of the builder, not ↵Leonard Richardson
the BeautifulSoup class itself. lxml uses Unicode, Dammit; html5lib uses its internal algorithms.
2011-02-18Yay, meta tag rewrites now work with html5lib.Leonard Richardson
2011-02-18Still trying to get html5lib to rewrite the META tag.Leonard Richardson
2011-02-18Moved the substitution code to the Tag constructor so that we don't have to ↵Leonard Richardson
rely on handle_starttag to trigger it.
2011-02-18Got rid of now-useless builder configuration.Leonard Richardson
2011-02-13Got the doctype tests to work for html5lib.Leonard Richardson
2011-02-13Added tests for namespaced doctypes.Leonard Richardson
2011-02-13Clarified lxml's behavior w/r/t CDATA sections.Leonard Richardson
2011-02-13Figured out the deal with CDATA sections in lxml and html5lib, and added ↵Leonard Richardson
comments and tests.
2011-02-10Added some elementary doctype handling.Leonard Richardson