Rust templating with Handlebars.
Thanks to @blaenk's patch, handlebars-rust now compiles on nightly, beta and stable (1.4.0+) channel.
Check examples in the source. The example shows you how to:
Handlebars
and register the template from filesHelperDef
, and register itRun cargo run --example render
to see results.
(or RUST_LOG=handlebars=info cargo run --example render
for logging output).
Checkout examples/
for more concrete demos of current API.
From 0.13, you can use either rustc_serialize
or serde
for your
data type. By default we use ToJson
from rustc_serialize
to
convert your data into handlebars internal types. If you use serde
framework in your project, you can enable serde_type
feature of this
crate and we will use Serialize
from serde
to convert.
For information about handlebars, you will go to handlebars.js.
It's my favorite templating tool 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:
>
), partial
and block
Limitations:
ToJson
-able, so we can render
it. If you are on nightly channel, we have a syntax extension to generate default ToJson
implementation for you. If you use serde, you can enable serde_type
feature of handlebars-rust and add #[Serialize]
for your types.~
{{(foo bar)}}
a.b.[0]
and a.b.[c]
Feel free to report an issue if you find something broken. We aren't going to implement all features of handlebars-js, but we should have a workaround for cases we don't support.
I have started another project handlebars-iron for the Iron web framework.
No doubt that we will try our best to keep API compatible in each release. But sometime we have to bring in break changes to improve the design when worthy.
renderw
now accepts &Context
instead of ToJson
to avoid
unnecessary clone in batch rendering. 90274e7MIT, of course.
Ning Sun (sunng@about.me)