template-cli 0.4.4

CLI for templating based on JSON, YAML or HCL configuration
Documentation
null:{% null %}
true: {% true %}
false: {% false %}
integer: {% 0 %}
integer: {% 100 %}
integer: {% -100 %}
float: {% 0. %}
float: {% .0 %}
float: {% 1.0 %}
float: {% 1.0e0 %}
float: {% 1.0e-1 %}
float: {% 1.0e10 %}
float: {% 1.0e10 %}
float: {% -0. %}
float: {% -.0 %}
float: {% -1.0 %}
float: {% -1.0e0 %}
float: {% -1.0e-1 %}
float: {% -1.0e10 %}
float: {% -1.0e10 %}
string:{% "" %}
string: {% "string" %}
array: {% [] %}
array: {% [ ] %}
array: {% [ 1 ] %}
array: {% [ "", "a",1, 1., integer, string ] %}
dictionary: {% {} %}
dictionary: {% { } %}
dictionary: {% {a: b} %}
dictionary: {% {a: "b", c: 1, d: null, e: .1, " spaceee ": "space!", integer: integer, string: string} %}