Skip to content

Commit

Permalink
Merge pull request #76 from MomoPewpew/develop
Browse files Browse the repository at this point in the history
Fixed selector regex to allow colons
  • Loading branch information
CubBossa authored Apr 3, 2024
2 parents 7bb0327 + 6448aa4 commit 435996e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ COND_DELIMIT: ',';
COND_EQUALS: '=';

QUOTE : '"' ( ESC_SEQ | ~('\\'|'"') )* '"' ;
IDENTIFIER: [a-zA-Z][a-zA-Z0-9_-]*;
IDENTIFIER: [a-zA-Z][a-zA-Z0-9_:-]*;
STRING: (~[,=])+?;

fragment
Expand Down

0 comments on commit 435996e

Please sign in to comment.