is there any method available by which i can change the delimiter from @ to <% and %>
that is, instead of
var s = new Template("Hello, @name!").execute({name:"World"});
i may be able to process this:
var s = new Template("Hello, <%=name%>!").execute({name:"World"});
is there any method available by which i can change the delimiter from @ to <% and %>
that is, instead of
var s = new Template("Hello, @name!").execute({name:"World"});
i may be able to process this:
var s = new Template("Hello, <%=name%>!").execute({name:"World"});