man/mustache.5.ron in mustache-1.0.1 vs man/mustache.5.ron in mustache-1.0.2
- old
+ new
@@ -52,13 +52,13 @@
template will try to find the `name` key in the current context. If
there is no `name` key, the parent contexts will be checked recursively.
If the top context is reached and the `name` key is still not found,
nothing will be rendered.
-All variables are HTML escaped by default. If you want to return
-unescaped HTML, use the triple mustache: `{{{name}}}`.
+All variables are HTML escaped by default. If you want to return raw contents
+without escaping, use the triple mustache: `{{{name}}}`.
-You can also use `&` to unescape a variable: `{{& name}}`. This may be
+You can also use `&` to return its raw contents: `{{& name}}`. This may be
useful when changing delimiters (see "Set Delimiter" below).
By default a variable "miss" returns an empty string. This can usually
be configured in your Mustache library. The Ruby version of Mustache
supports raising an exception in this situation, for instance.