templateString := 'Hello {{name}},
this is {{templatingEngine}} for {{recipient}}.
{{# cheerUp }}
Have fun!
{{/ cheerUp }}'.
context := {
'name' -> 'pharo community'.
'templatingEngine' -> 'mustache'.
'recipient' -> 'you'.
'cheerUp' -> true } asDictionary.
templateString asMustacheTemplate value: context