Skip to content

v0.4.1 is released!

Compare
Choose a tag to compare
@soasme soasme released this 15 May 23:18
· 12 commits to master since this release
0496de4

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"