Removing the ending @ sign in the shape data

This commit is contained in:
Knut Sveidqvist
2024-09-12 11:49:21 +02:00
parent 2f24f6271a
commit 8bb70ea493

View File

@@ -48,10 +48,10 @@ accDescr\s*"{"\s* { this.begin("acc_descr_multilin
const re = /\n\s*/g; const re = /\n\s*/g;
yytext = yytext.replace(re,"<br/>"); yytext = yytext.replace(re,"<br/>");
return 'SHAPE_DATA'} return 'SHAPE_DATA'}
<shapeData>[^@^"]+ { <shapeData>[^}]+ {
return 'SHAPE_DATA'; return 'SHAPE_DATA';
} }
<shapeData>\@+ { <shapeData>"}" {
this.popState(); this.popState();
} }