Allow capitals in entity templates. Fix #10

This commit is contained in:
Thomas Lovén 2019-02-16 20:23:39 +01:00
parent 9203a1825b
commit f5bb8e0a1f

View File

@ -185,7 +185,7 @@ class {
static parseTemplateString(str) {
if(typeof(str) !== "string") return text;
var RE_entity = /^[a-z1-9_.]+$/;
var RE_entity = /^[a-zA-Z0-9_.]+\.[a-zA-Z0-9_]+$/;
var RE_if = /^if\(([^,]*),([^,]*),(.*)\)$/;
var RE_expr = /([^=<>!]+)\s*(==|<|>|<=|>=|!=)\s*([^=<>!]+)/