diff --git a/src/handlebars.l b/src/handlebars.l index 970aaddf4..d2f996348 100644 --- a/src/handlebars.l +++ b/src/handlebars.l @@ -43,7 +43,7 @@ "true"/[}\s] { return 'BOOLEAN'; } "false"/[}\s] { return 'BOOLEAN'; } \-?[0-9]+/[}\s] { return 'INTEGER'; } -[a-zA-Z0-9_$-]+/[=}\s\/.] { return 'ID'; } +[a-zA-Z0-9_$:-]+/[=}\s\/.] { return 'ID'; } '['[^\]]*']' { yytext = yytext.substr(1, yyleng-2); return 'ID'; } . { return 'INVALID'; } \s+ { /*ignore whitespace*/ }