From d373105b32d7b04cca6115b891f042c2b21339c2 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 21 Aug 2018 13:42:51 +0100 Subject: [PATCH] Fix typo in template.html --- nodes/core/core/80-template.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.