Skip to content

Releases: soasme/nim-mustache

v0.4.3 is released!

08 Aug 22:43
Compare
Choose a tag to compare

Export searchDirs & searchTable.

nim-mustache v0.4.2 is released!

10 Jun 03:58
Compare
Choose a tag to compare
  • Supported casting types float32, float64, int8, int16, int32, int64.

v0.4.1 is released!

15 May 23:18
0496de4
Compare
Choose a tag to compare

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.

08 May 10:05
8875169
Compare
Choose a tag to compare
  • Upgrade to the mustache spec v1.2.1.
  • Migrate test from Travis to GitHub Actions.