Releases: soasme/nim-mustache
Releases · soasme/nim-mustache
v0.4.3 is released!
nim-mustache v0.4.2 is released!
- Supported casting types float32, float64, int8, int16, int32, int64.
v0.4.1 is released!
Inheritance is supported now! Just in case you are not familiar with this mustache feature, check this example:
let s = "{{<test}}{{$foo}}hello world{{/foo}}"{{/test}}"
let c = newContext(partials = {"test": "{{$foo}}default{{/foo}}"}.toTable())
s.render(c)
# "hello world"
v0.4.0 is released.
- Upgrade to the mustache spec v1.2.1.
- Migrate test from Travis to GitHub Actions.