We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
htmlspecialchars
1 parent 1659fa8 commit c311d7aCopy full SHA for c311d7a
README.md
@@ -182,6 +182,9 @@ Use `redirect()` function to redirect the user:
182
183
The `htmlspecialchars()` function is available for escaping HTML content:
184
185
+> [!TIP]
186
+> When using curly `{{ }}` syntax, `htmlspecialchars` will be automatically applied.
187
+
188
```html
189
<div><?= htmlspecialchars(userInput) ?></div>
190
```
playground/todos.html
@@ -71,7 +71,7 @@ <h1 class="h4 mb-3 text-center">Todos</h1>
71
<span
72
class="{{ t.done ? 'text-decoration-line-through text-muted' : '' }}"
73
>
74
- {{ htmlspecialchars(t.text) }}
+ {{ t.text }}
75
</span>
76
</div>
77
<div class="d-flex gap-1">
0 commit comments