Other javaScript templating engines support compiling the template text to a function which can then be called many times with different values without having the original template text be compiled again and again.
E.g in underscore templates:
var compiled = _.template("hello: <%= name %>");
compiled({name : 'moe'});
"hello: moe"
Is there any "hidden" way you can do that with tim?