Rust templating with Handlebars.
It's my favorite templating tools by far. I used it in Delicious.com as javascript-side template in 2013. Also I maintained a Clojure wrapper for Handlebars.java, hbs. And you may notice the close relationship between Ember.js and Rust community, handlebars is the default templating language of Ember.js framework, which powers crates.io.
Reasons I prefer Handlebars:
Handlebars provides:
include
, partial
and block
Limitations:
ToJson
-able, so we can render it.Check examples in the source. The example shows you how to:
Template
Registry
and register the templateHelperDef
, and register itToJson
-able.Run cargo run --example render
to see results.
(or RUST_LOG=INFO cargo run --example render
) for logging output.
MIT, of course.
Ning Sun (sunng@about.me)