/tmpl

Render Go templates from cli

Primary LanguageGo

tmpl

Render go templates from cli

Usage

vars.json

{ "one": 1 }

text.tpl

You are number {{ .one }}!
$ tmpl -in text.tpl -data vars.json
You are number 1!