summaryrefslogtreecommitdiff
path: root/bs4/builder
AgeCommit message (Expand)Author
2024-01-17Added the correct stacklevel to instances of the XMLParsedAsHTMLWarning.Leonard Richardson
2023-06-04Fixed a case found by Mengyuhan where html.parser giving up onLeonard Richardson
2023-02-15When the html.parser parser decides it can't parse a document, BeautifulLeonard Richardson
2023-01-27Got rid of some more warnings by removing code that's not relevant anymore, n...Leonard Richardson
2023-01-27Warnings now do their best to provide an appropriate stacklevel,Leonard Richardson
2022-04-10Fixed another crash when overriding multi_valued_attributes and using theLeonard Richardson
2021-11-29Do a better job of keeping track of namespaces as an XML document isLeonard Richardson
2021-10-24Issue a warning when an HTML parser is used to parse a document thatLeonard Richardson
2021-10-23Added a workaround for an lxml bug (https://bugs.launchpad.net/lxml/+bug/19...Leonard Richardson
2021-10-23Fixed a crash when overriding multi_valued_attributes and using theLeonard Richardson
2021-10-11Added special string classes, RubyParenthesisString and RubyTextString,Leonard Richardson
2021-09-07Goodbye, Python 2. [bug=1942919]Leonard Richardson
2021-05-31The html.parser tree builder can now handles named entitiesLeonard Richardson
2021-02-13Added a second way to pass specify encodings to UnicodeDammit andLeonard Richardson
2020-05-30Remove explicit reference to the module name within the module, replacing it ...Leonard Richardson
2020-05-17Switch entirely to Python 3-style print statements, even in Python 2.Leonard Richardson
2020-05-17Documented some recently added customization features.Leonard Richardson
2020-05-17Added a keyword argument on_duplicate_attribute to theLeonard Richardson
2020-04-05Embedded CSS and Javascript is now stored in distinct Stylesheet andLeonard Richardson
2019-12-24Added docstrings for some but not all tree buidlers.Leonard Richardson
2019-11-11Simplified code.Leonard Richardson
2019-11-11The html.parser tree builder now correctly handles DOCTYPEs that areLeonard Richardson
2019-11-11Added a Brazilian Portuguese translation by Cezar Peixeiro.Leonard Richardson
2019-09-02Avoid a crash when trying to detect the declared encoding of aLeonard Richardson
2019-07-21Implemented line number tracking for html5lib.Leonard Richardson
2019-07-21Adapt Chris Mayo's code to track line number and position when using html.par...Leonard Richardson
2019-07-14Give the Formatter class more control over formatting decisions.Leonard Richardson
2019-07-07Renamed the cdata_list_attributes argument to multi_valued_attributes since i...Leonard Richardson
2019-07-07It's now possible to override a TreeBuilder's cdata_list_attributes dictionar...Leonard Richardson
2019-01-06Don't track un-prefixed namespacesIsaac Muse
2018-12-30Fixed a problem with multi-valued attributes where the valueLeonard Richardson
2018-12-24Clarified the software license.Leonard Richardson
2018-12-24Keep track of the namespace abbreviations found while parsing the document. T...Leonard Richardson
2018-12-22Fix next and previous linkage issues. Fixes issues #1806598 and #1782928.Isaac Muse
2018-08-12Converted README to Markdown format.Leonard Richardson
2018-07-28Correctly handle invalid HTML numeric character entities like “Leonard Richardson
2018-07-21Fixed a problem where the html.parser tree builder interpretedLeonard Richardson
2018-07-18Preserve XML namespaces when they are introduced inside an XMLLeonard Richardson
2018-07-15Introduced the Formatter system. [bug=1716272].Leonard Richardson
2018-07-15It's possible for a TreeBuilder subclass to specify that voidLeonard Richardson
2018-07-15Stop data loss when encountering an empty numeric entity, andLeonard Richardson
2018-07-14Stopped HTMLParser from raising an exception in very rare cases ofLeonard Richardson
2017-05-06 Improved the handling of empty-element tags like <br> when using theLeonard Richardson
2017-05-06HTML parsers treat all HTML4 and HTML5 empty element tags (aka void element t...Leonard Richardson
2016-12-19Fixed foster parenting when html5lib is the tree builder. Thanks to Geoffrey ...Leonard Richardson
2016-12-19Fixed yet another problem that caused the html5lib tree builder toLeonard Richardson
2016-07-30Explained why we test both unicode and bytestring processing instructions.Leonard Richardson
2016-07-26Fixed a reported (but not duplicated) bug involving processing instructions f...Leonard Richardson
2016-07-16Beautiful Soup will now work with versions of html5lib greater thanLeonard Richardson
2016-07-16Removed imports to pdb, since pdb is not available in some environments. [bug...Leonard Richardson