diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 19:39:31 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 19:39:31 -0500 |
commit | 121361b1835a619ae03fce39cb5569f28968f1b0 (patch) | |
tree | 01da66b0c4be7146b37c898b5c617134b9ae4479 /beautifulsoup/builder/__init__.py | |
parent | c3090d7e7337f88853fc5371c6d8011eb638c37f (diff) |
Started using the builder registry.
Diffstat (limited to 'beautifulsoup/builder/__init__.py')
-rw-r--r-- | beautifulsoup/builder/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/beautifulsoup/builder/__init__.py b/beautifulsoup/builder/__init__.py index 854cc56..385dd50 100644 --- a/beautifulsoup/builder/__init__.py +++ b/beautifulsoup/builder/__init__.py @@ -15,6 +15,7 @@ FAST = 'fast' PERMISSIVE = 'permissive' XML = 'xml' HTML = 'html' +HTML_5 = 'html5' class TreeBuilderRegistry(object): |