blob: de89fa4820e22b01ce7e5f9c79d04972908ff2b4 [file] [log] [blame]
#![allow(unused_imports)]
use handlebars::Handlebars;
use std::error::Error;
#[macro_use]
extern crate serde_json;
fn main() -> Result<(), Box<dyn Error>> {
let mut handlebars = Handlebars::new();
handlebars.register_template_file("tpl", "./examples/script/template.hbs")?;
handlebars.register_script_helper_file("score", "./examples/script/goals.rhai")?;
let data = json! {[
[{
"name": "Dortmund",
"goals": ["Haaland", "Guerreiro", "Hazard", "Guerreiro"]
}, {
"name": "Schalke",
"goals": []
}],
[{
"name": "RB Leipzig",
"goals": ["Poulsen"]
}, {
"name": "SC Feriburg",
"goals": ["Gulde"]
}]
]};
println!("{}", handlebars.render("tpl", &data)?);
Ok(())
}