Fixed a bug with open/close tags
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user