transform.HTMLEscape
Returns the given string, escaping special characters by replacing them with HTML entities.
- Syntax
- transform.HTMLEscape INPUT
- Returns
- string
- Alias
- htmlEscape
The transform.HTMLEscape function escapes five special characters by replacing them with HTML entities:
&→&<→<>→>'→'"→"
For example:
{{ htmlEscape "Lilo & Stitch" }} → Lilo & Stitch
{{ htmlEscape "7 > 6" }} → 7 > 6Last updated:
June 18, 2026
:
Merge commit 'c86d9f4aa8a58931f52df6516f10b67c807505fb' (be780afa7)
Improve this page