Command line tool that compiles Golang templates with values from YAML files.
Inspired by Python/Jinja2's j2cli.
go get github.com/tsg/gotpl
Say you have a template
file like this:
{{.first_name}} {{.last_name}} is {{.age}} years old.
and a user.yml
YAML file like this one:
first_name: Max
last_name: Mustermann
age: 30
You can compile the template like this:
gotpl template < user.yml