handlebars.scala
handlebars.scala copied to clipboard
Type safe compilation of templates
handlebars.scala is rather slow in environments where performance is critical. The default behavior is to use reflection on the fly to traverse the context given to the template. It would be great if we knew the type of the context before hand we could resolve errors at compile time and make rendering really fast!
Resolved somewhat with the json bindings?