diff options
Diffstat (limited to 'beautifulsoup/builder/_html5lib.py')
-rw-r--r-- | beautifulsoup/builder/_html5lib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/beautifulsoup/builder/_html5lib.py b/beautifulsoup/builder/_html5lib.py index 395fb9d..175ea9b 100644 --- a/beautifulsoup/builder/_html5lib.py +++ b/beautifulsoup/builder/_html5lib.py @@ -20,7 +20,7 @@ from beautifulsoup.element import ( class HTML5TreeBuilder(HTMLTreeBuilder): """Use html5lib to build a tree.""" - features = [PERMISSIVE, HTML] + features = ['html5lib', PERMISSIVE, HTML] def prepare_markup(self, markup, user_specified_encoding): # Store the user-specified encoding for use later on. |