diff options
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/htmltokenizer.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/html/htmltokenizer.nim b/src/html/htmltokenizer.nim index 5053af97..5a2c16bc 100644 --- a/src/html/htmltokenizer.nim +++ b/src/html/htmltokenizer.nim @@ -895,7 +895,9 @@ iterator tokenize*(tokenizer: var Tokenizer): Token = of eof: parse_error eof_in_tag emit_eof - else: append_to_current_attr_value r + else: + parse_error missing_whitespace_between_attributes + reconsume_in BEFORE_ATTRIBUTE_NAME of SELF_CLOSING_START_TAG: case c |