Update README

This commit is contained in:
2025-10-14 12:34:30 +02:00
parent 3da32113d1
commit c2eec50ed5
+9 -1
View File
@@ -223,7 +223,7 @@ let fruit = ["Orange", "Apple"]
<ul>
\for item in fruit:
<li>\fruit</li>
<li>\item</li>
</ul>
</p>
```
@@ -243,6 +243,14 @@ let navigator =
</nav>
```
### HTML escaping
If you want to ascape any value to avoid rendering dynamic data as HTML elements, you can use the `escape` operator
```
escape(<p>Hello, world!</p>)
```
### File inclusion
You can include files using the `include` keyword.