mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
24 lines
628 B
Markdown
24 lines
628 B
Markdown
---
|
|
title: transform.HTMLEscape
|
|
linkTitle: htmlEscape
|
|
description: Returns the given string with the reserved HTML codes escaped.
|
|
categories: [functions]
|
|
keywords: []
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
function:
|
|
aliases: [htmlEscape]
|
|
returnType: string
|
|
signatures: [transform.HTMLEscape INPUT]
|
|
relatedFunctions:
|
|
- transform.HTMLEscape
|
|
- transform.HTMLUnescape
|
|
aliases: [/functions/htmlescape]
|
|
---
|
|
|
|
In the result `&` becomes `&` and so on. It escapes only: `<`, `>`, `&`, `'` and `"`.
|
|
|
|
```go-html-template
|
|
{{ htmlEscape "Hugo & Caddy > WordPress & Apache" }} → "Hugo & Caddy > WordPress & Apache"
|
|
```
|