We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9d7d16 commit 915745aCopy full SHA for 915745a
src/docnode.cpp
@@ -2214,6 +2214,18 @@ Token DocHtmlTable::parse()
2214
{
2215
retval = Token::make_RetVal_EndTable();
2216
}
2217
+ else if (tagId==HtmlTagType::HTML_TBODY && parser()->context.token->endTag)
2218
+ {
2219
+ // for time being ignore </t....> tag
2220
+ }
2221
+ else if (tagId==HtmlTagType::HTML_THEAD && parser()->context.token->endTag)
2222
2223
2224
2225
+ else if (tagId==HtmlTagType::HTML_TFOOT && parser()->context.token->endTag)
2226
2227
2228
2229
else // found some other tag
2230
2231
warn_doc_error(parser()->context.fileName,parser()->tokenizer.getLineNr(),"expected <tr> or </table> tag but "
0 commit comments