diff --git a/src/lexer.c b/src/lexer.c index 91b1e13..4346edb 100644 --- a/src/lexer.c +++ b/src/lexer.c @@ -2747,7 +2747,13 @@ static Node* GetTokenFromStream( TidyDocImpl* doc, GetTokenMode mode ) lexer->doctype = FindGivenVersion(doc, lexer->token); if (lexer->doctype != VERS_HTML5) { - TY_(AdjustTags)(doc); /* Issue #167 & #169 - Adjust TidyTag_A back to legacy mode */ + /*\ + * Back to legacy HTML4 mode for - + * Issue #167 & #169 - TidyTag_A + * Issue #196 - TidyTag_CAPTION + * others? + \*/ + TY_(AdjustTags)(doc); /* Dynamically modify the tags table */ } } node = lexer->token; diff --git a/version.txt b/version.txt index 8bc1d4f..85b7660 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -4.9.24 \ No newline at end of file +4.9.25 \ No newline at end of file