diff --git a/nodes/core/core/80-template.html b/nodes/core/core/80-template.html index 31dfe97ca..2f2e27969 100644 --- a/nodes/core/core/80-template.html +++ b/nodes/core/core/80-template.html @@ -77,7 +77,9 @@ }
The resulting property will be:
Hello Fred. Today is Monday-
It is possible to use a property from the flow context or global context. Just use {{flow.name}}
or {{global.name}}
, or for persistable store store
use {{flow[store].name}}
or {{flobal[store].name}}
.
+
It is possible to use a property from the flow context or global context. Just use {{flow.name}}
or
+ {{global.name}}
, or for persistable store store
use {{flow[store].name}}
or
+ {{global[store].name}}
.
Note: By default, mustache will escape any HTML entities in the values it substitutes.
To prevent this, use {{{triple}}}
braces.