1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

add extra comment re mustache escapes to tempalte info

This commit is contained in:
Dave Conway-Jones 2019-09-20 11:20:40 +01:00
parent 6b61fa9f6f
commit d2a8823808
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4

View File

@ -46,6 +46,6 @@
<p>It is possible to use a property from the flow context or global context. Just use <code>{{flow.name}}</code> or
<code>{{global.name}}</code>, or for persistable store <code>store</code> use <code>{{flow[store].name}}</code> or
<code>{{global[store].name}}</code>.
<p><b>Note: </b>By default, <i>mustache</i> will escape any HTML entities in the values it substitutes.
<p><b>Note: </b>By default, <i>mustache</i> will escape any non-alphanumeric or HTML entities in the values it substitutes.
To prevent this, use <code>{{{triple}}}</code> braces.
</script>