mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-12 12:19:31 +00:00
25 lines
896 B
Markdown
25 lines
896 B
Markdown
---
|
|
title: htmlUnescape
|
|
linktitle: htmlUnescape
|
|
description: Returns the given string with HTML escape codes un-escaped.
|
|
godocref:
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
tags: []
|
|
signature:
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: [htmlEscape]
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
`htmlUnescape` returns the given string with HTML escape codes un-escaped. This un-escapes more codes than `htmlEscape` escapes, including `#` codes and pre-UTF8 escapes for accented characters. It defers completely to the Go `html.UnescapeString` function, so functionality is consistent with that codebase.
|
|
|
|
Remember to pass the output of this to `safeHTML` if fully un-escaped characters are desired. Otherwise, the output will be escaped again as normal.
|
|
|
|
```
|
|
{{ htmlUnescape "Hugo & Caddy > Wordpress & Apache" }} → "Hugo & Caddy > Wordpress & Apache"
|
|
``` |