From c2eec50ed50edd3e96e7feec41a0395336754f05 Mon Sep 17 00:00:00 2001
From: Francesco Cozzuto
Date: Tue, 14 Oct 2025 12:34:30 +0200
Subject: [PATCH] Update README
---
README.md | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index c6bb945..24376e3 100644
--- a/README.md
+++ b/README.md
@@ -223,7 +223,7 @@ let fruit = ["Orange", "Apple"]
\for item in fruit:
- - \fruit
+ - \item
```
@@ -243,6 +243,14 @@ let navigator =
```
+### HTML escaping
+
+If you want to ascape any value to avoid rendering dynamic data as HTML elements, you can use the `escape` operator
+
+```
+escape(Hello, world!
)
+```
+
### File inclusion
You can include files using the `include` keyword.