This is a rewrite of scala-mustache for scala3 with some bug fixes.
Mustache is a logic-free template engine inspired by ctemplate and et.
As ctemplates says, "It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language".
To get the language-agnostic overview of Mustache's template syntax and examples of Mustache templates, see http://mustache.github.io/mustache.5.html.
Using scala3-mustache is easy:
import mustache.Mustache
...
val template1 = new Mustache("Hello, {{ name }}!")
template1.render(Map("name"->"world")) // returns "Hello, world!"
val template2 = new Mustache("Boolean: {{#show}}{{ text }}{{/show}}!")
template2.render(Map("show" = true, "text" -> "Hello, world!")) // returns "Boolean: Hello, world!"
val template3 = new Mustache("Names: {{#names}}{{ name }} {{/name}}!")
template3.render(Map("names" -> List(Map("name" -> "A"), Map("name" -> "B")) // returns "Names: A B "
By default, special characters inside the tag such as <, >, ", &
are escaped in the
output:
val template = new Mustache("Hello, {{ name }}!")
template.render(Map("name" -> "<b> world </b>"))
will return
Hello, <b> world </b>!
To prevent escaping of special characters, use {{{tag}}}
or {{&tag}}
val template = new Mustache("Hello, {{ &name }} {{{ tag }}}!")
template.render(Map("name" -> "<b> world </b>", "tag" -> "& everyone"))
returns,
Hello, <b> world </b> & everyone!
It's possible to break up a mustache template, and call a template from within another
template. The inserted template is called a partial, and {{> partial_name }}
is used
to insert the appropriate partial.
To render a template containing partials, an optional Map[String, Mustache]
might be
passed to the render function with the partials mapped from the names:
val user = new Mustache("<strong>{{name}}</strong>")
val main = new Mustache("<h2>Names</h2>\n{{#names}}\n {{> user}}\n{{/names}}")
val ctx =
Map(
"names" -> List(
Map("name" -> "Alice"),
Map("name" -> "Bob")
)
)
val partials = Map("user" -> user)
main.render(ctx, partials)
Which returns
<h2>Names</h2>
<strong>Alice</strong>
<strong>Bob</strong>
Templates defined with partials can be thought of as a single expanded tempalte:
<h2>Names</h2>
{{#names}}
<strong>{{name}}</strong>
{{/names}}
You can use {{.}}
and {{{.}}}
to reference current context value:
val template = new Mustache("{{#list}}{{.}} {{/list}}")
template.render(Map("list" -> List("alpha", "bravo", "charlie"))) // returns "alpha bravo charlie "
When the context value is a callable object, such as a function or lambda, the object
will be invoked and passed the block of text. The text passed is the literal block,
unrendered. {{tags}}
will not have been expanded - the lambda should do that on its
own. In this way you can implement filters or caching.
val template = new Mustache("{{#wrapped}}{{name}} is awesome.{{/wrapped}}")
template.render(
Map(
"name" -> "Willy",
"wrapped" -> ((str: String, render: String => String) => {
"<b>" + render(str) + "</b>"
})
)
) // returns "<b>Willy is awesome.</b>"
Alternatively you can pack your helpers directly into the Mustache subclass. Following example is effectively the same as previous:
class MyMustache(template: String) extends Mustache(template):
def wrapped(str: String) = "<b>" + render(str) + "</b>"
val template = new MyMustache("{{#wrapped}}{{name}} is awesome.{{/wrapped}}")
template.render(Map("name" -> "Willy")) // returns "<b>Willy is awesome.</b>"
Sometimes it is nice to keep different kinds of helpers separate. To do so, you can define helper traits and then mix them up as needed:
import mustache.MustacheHelperSupport
trait MyHelper:
this: MyHelper with MustacheHelperSupport =>
def wrapped(str: String) = "<b>" + render(str) + "</b>"
class MyMustache(template: String)
extends Mustache(template) with MyHelper
MustacheHelperSupport trait defines following methods you can use in your helper methods:
protected def context: Any // returns current context
protected def render(template: String): String // renders template string