summaryrefslogtreecommitdiff
path: root/Lib/markupbase.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/markupbase.py')
-rw-r--r--Lib/markupbase.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/markupbase.py b/Lib/markupbase.py
index 24808d185b..ddeb9835b8 100644
--- a/Lib/markupbase.py
+++ b/Lib/markupbase.py
@@ -108,6 +108,10 @@ class ParserBase:
if decltype == "doctype":
self.handle_decl(data)
else:
+ # According to the HTML5 specs sections "8.2.4.44 Bogus
+ # comment state" and "8.2.4.45 Markup declaration open
+ # state", a comment token should be emitted.
+ # Calling unknown_decl provides more flexibility though.
self.unknown_decl(data)
return j + 1
if c in "\"'":