mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-26 13:40:38 +03:00
734 B
734 B
title | description | categories | keywords | params | aliases | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
transform.HTMLEscape | Returns the given string, escaping special characters by replacing them with HTML entities. |
|
|
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