sh
hdlbr VARIABLES_FILE TEMPLATE_FILE
Where: - VARIABLESFILE is a JSON map, listing all vars. - TEMPLATETILE is a Handlebars template.
vars.json
:
json
{
"name": "Foo",
"comments": [
{
"author": "Dracula"
},
{
"author": "Alucard"
}
]
}
template.hbs
:
handlebars
Hello {{name}}
{{~#each comments}}
{{author}}
{{~/each~}}
Result of hdlbr vars.json template.hbs
:
Hello Foo
Dracula
Alucard
You may use Rust 2018 and Cargo to build:
cargo build --release