change template characters

Added note about changing template characters
This commit is contained in:
Sam Machin 2021-08-12 16:41:32 +01:00 committed by GitHub
parent f1e7ec0c6b
commit 1aaab2a814
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -47,5 +47,9 @@
<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 non-alphanumeric or HTML entities in the values it substitutes.
To prevent this, use <code>{{{triple}}}</code> braces.
To prevent this, use <code>{{{triple}}}</code> braces.</p>
<p>You can change the characters used for templating (if for example you need to use {{ }} within your content) by adding a line to the top of the template itself,
to change to use [[ ]] add:
<code>{{=[[ ]]=}}</code>
To the start of your template.</p>
</script>