Fix for shitty JS regex engines.

This commit is contained in:
wycats
2011-01-10 15:47:07 -08:00
parent 354d61d3c8
commit ce1ed0dc4a
+2 -2
View File
@@ -3,8 +3,8 @@
%%
(.|\s)*?/("{{") { this.begin("mu"); if (yytext) return 'CONTENT'; }
(.|\s)+ { return 'CONTENT'; }
[.\s]*?/("{{") { this.begin("mu"); if (yytext) return 'CONTENT'; }
[.|\s]+ { return 'CONTENT'; }
<mu>"{{>" { return 'OPEN_PARTIAL'; }
<mu>"{{#" { return 'OPEN_BLOCK'; }