I'd like to make it so expressions are not case sensitive.
For example, the following data:
var context = {title: "My New Post"};
var html = template(context);
would support both:
I looked through the source code and can't see where I would make such a change. I understand there may be some performance impact, but this would really help for my use case.
I'd like to make it so expressions are not case sensitive.
For example, the following data:
would support both:
{{title}} and {{Title}}I looked through the source code and can't see where I would make such a change. I understand there may be some performance impact, but this would really help for my use case.