Fixed a bug with open/close tags

This commit is contained in:
Nate Choe
2022-04-24 22:03:23 -05:00
parent ce0a4e37f1
commit dd5aaab8e2

View File

@@ -106,8 +106,11 @@ static int parseline(char *line, struct parsestate *currstate, FILE *out) {
case SKELETON: case SKELETON:
handlehtmlmiddle(&type, currstate, line, out); handlehtmlmiddle(&type, currstate, line, out);
return 0; return 0;
case GENERICTAG:
handlehtmlmiddle(&type, currstate, line, out);
return 0;
case EMPTY: case PLAIN: case SPACECODE: case HR: case EMPTY: case PLAIN: case SPACECODE: case HR:
case SETEXT1: case SETEXT2: case HEADER: case GENERICTAG: case SETEXT1: case SETEXT2: case HEADER:
break; break;
} }