Nim-mustache is a Nim implementation of Mustache. Mustache is a logic-less templating system inspired by ctemplate and et. Mustache "emphasizes separating logic from presentation: it is impossible to embed application logic in this template language." Nim-mustache is a full implementation of mustache spec v1.2.1.
Nim-mustache is stable now. Welcome to contribute, comment, and report issues. ❤️
- ✨ Support
Static Text
. - ✨ Support
{{Variables}}
. - ✨ Support
{{# Section }} {{/ Section }}
. - ✨ Support
{{^ InvertedSection }} {{/ InvertedSection }}
. - ✨ Support
{{! Comments }}
. - ✨ Support
{{=<% %>=}} <% SetDelimiter %>
. - ✨ Support
{{> Partial }}
. - ✨ Support Inheritance
{{< Parent}}{{$ foo}}Substitute{{/ foo}}{{/ Parent}}
. - ✨ Support Lambda.
- ✨ Passed all mustache specs.
Nim-mustache requires Nim >= 1.0.0.
$ nimble install mustache
# Step 1.
import mustache, tables
# Step 2.
var c = newContext()
c["i"] = 1
c["f"] = 1.0
c["s"] = "hello world"
c["a"] = @[{"k": "v"}.toTable]
c["t"] = {"k": "v"}.toTable
c["l"] = proc(s: string, c: Context): string = "<b>" & s.render(c) & "</b>"
# Step 3.
let s = """
{{i}} {{f}} {{s}}
{{#a}}
{{k}}
{{/a}}
{{#t}}
{{k}}
{{/t}}
{{#l}}
{{s}}
{{/l}}
"""
echo(s.render(c))
Consider you have your own object Stock
.
type Stock = object
name*: string
price*: int
let stock = Stock(name: "NIM", price: 1000)
It would be convenient if you can set it to context:
let c = newContext()
c["stock"] = stock
let s = "{{#stock}}{{name}}: {{price}}{{/stock}}"
echo(s.render(c))
The trick is to define a castValue
proc for your type.
Below is an example of how to define a castValue
for Stock
.
proc castValue(value: Stock): Value =
let newValue = new(Table[string, Value])
result = Value(kind: vkTable, vTable: newValue)
newValue["name"] = value.name.castValue
newValue["price"] = value.price.castValue
By default, partials are located in cwd
.
$ ls
main.mustache partial.mustache
$ cat main.mustache
{{> partial}}
But what if mustache files are in other locations?
$ pwd
/tmp/path/to
$ ls -R
main.mustache
templates/partial.mustache
In this case, You can specify other searching dirs:
let c = newContext(searchDirs=@["/path/to/templates", "./"])
let s = readFile("main.mustache")
echo(s.render(c))
You can also read mustache partials from an in-memory table:
import tables
let partials = {
"something": "This is something"
}.toTable()
let c = newContext(partials=partials)
let s = "something: {{> something}}"
echo(s.render(c))
You can read mustache partials from both directory and in-memory table in different orders. The first source that have the partial key wins.
import tables
let partials1 = {
"something": "This is something"
}.toTable()
let partials2 = {
"something": "This is something else"
}.toTable()
let c = newContext()
c.searchTable(partials1)
c.searchDirs(["/path/to/partials"])
c.searchTable(partials2)
let s = "result: {{> something}}"
echo(s.render(c)) # result: This is something
It's recommended using Mustache with Jester, a sinatra-like web framework for Nim, when writing a web application.
Imagine you have a template file named hello.mustache
. Rendering the template can be as simple as calling it in a route.
import jester
import mustache
routes:
get "/hello/@name":
let c = newContext()
c["name"] = @"name"
resp "{{ >hello }}".render(c)
In hello.mustache
, it's just mustache template content.
<html>
<body>
<h1>Hello, {{ name }}</h1>
</body>
</html>
If you have a dedicated directory template directory, you can specify it as:
let c = newContext(searchDirs = @["/path/to/templates"])
Build the binary.
$ nimble build
Run test cases.
$ nimble test
- v0.4.3, 9 Aug 2021, export searchDirs & searchTable.
- v0.4.2, 10 Jun 2021, support casting types float32, float64, int8, int16, int32, int64.
- v0.4.1, 16 May 2021, support mustache inheritance tag.
- v0.4.0, 8 May 2021, build on github action && support mustache spec v1.2.1.
- v0.3.3, 7 May 2021, add optional parameter
values
fornewContext
& support JsonNode as a value. - v0.3.2, 25 Jan 2021, support numeric indexing from list using dot syntax.
- v0.3.1, 24 Jan 2021, fix version issue.
- v0.3.0, 2 Dec 2020, support loading partials from multiple in-memory tables/directories.
- v0.2.2, 1 Dec 2020, support in-memory table for partial resolving.
- v0.2.1, 20 Sep 2019, fix locks level warnings.
- v0.2.0, 20 Sep 2019, support setting arbitrary objects in context.
- v0.1.0, 19 Sep 2019, initial release.
- moustachu. Moustachu doesn't implement some mustache features, such as lambda, set delimiters, while Nim-mustache supports all mustache features.
- spec, (see also a document with the results of running the specs using nim-mustache)
- syntax, (see also a document reproducing the syntax using nim-mustache)