From ce1f58ab0024c1a4da0bf467d857fad9b628b3f7 Mon Sep 17 00:00:00 2001 From: Jack Farley Date: Fri, 26 May 2023 20:54:42 +1200 Subject: [PATCH] Update 03-template-syntax.md Update text inline with PR discussions --- site/content/docs/03-template-syntax.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/site/content/docs/03-template-syntax.md b/site/content/docs/03-template-syntax.md index 27b6686cfc..fc511ab8e8 100644 --- a/site/content/docs/03-template-syntax.md +++ b/site/content/docs/03-template-syntax.md @@ -151,12 +151,14 @@ Text can also contain JavaScript expressions: --- -To include regular curly braces in the HTML, they must either be included as string Javascript expressions or their [HTML Entity](https://developer.mozilla.org/docs/Glossary/Entity) strings used +To include regular curly braces in the HTML, use their [HTML Entity](https://developer.mozilla.org/docs/Glossary/Entity) strings. ```html -{'{'} in curly braces {'}'} or { in curly braces } or { in curly braces } +{ in curly braces { { in curly braces } or { in curly braces } +{ it also works only escaping the start curly brace } ``` + ### Comments ---