processEndTag method
Implementation
@override
Token? processEndTag(EndTagToken token) {
switch (token.name) {
case 'tr':
endTagTr(token);
return null;
case 'table':
return endTagTable(token);
case 'tbody':
case 'tfoot':
case 'thead':
return endTagTableRowGroup(token);
case 'body':
case 'caption':
case 'col':
case 'colgroup':
case 'html':
case 'td':
case 'th':
endTagIgnore(token);
return null;
default:
return endTagOther(token);
}
}