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 > 6
Last updated:
December 4, 2023
:
Squashed 'docs/' changes from 4d936aee6..4dd2d6415 (35dec7c96)
Improve this page