summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/htmlEscape.md
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:37 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-10-21 10:21:51 +0200
commit39121de4d991bdcf5f202da4d8d81a8ac6c149fc (patch)
tree97e0b638fea1d898de9e297732d1044b49bfba8e /docs/content/en/functions/htmlEscape.md
parent180195aa342777fece1b29a08ec89456d7996c61 (diff)
downloadhugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.tar.gz
hugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.zip
docs: Replace /docs
Diffstat (limited to 'docs/content/en/functions/htmlEscape.md')
-rw-r--r--docs/content/en/functions/htmlEscape.md26
1 files changed, 0 insertions, 26 deletions
diff --git a/docs/content/en/functions/htmlEscape.md b/docs/content/en/functions/htmlEscape.md
deleted file mode 100644
index a1a2d6d55..000000000
--- a/docs/content/en/functions/htmlEscape.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-title: htmlEscape
-linktitle:
-description: Returns the given string with the reserved HTML codes escaped.
-godocref:
-date: 2017-02-01
-publishdate: 2017-02-01
-lastmod: 2017-02-01
-categories: [functions]
-menu:
- docs:
- parent: "functions"
-keywords: [strings, html]
-signature: ["htmlEscape INPUT"]
-workson: []
-hugoversion:
-relatedfuncs: [htmlUnescape]
-deprecated: false
-aliases: []
----
-
-In the result `&` becomes `&amp;` and so on. It escapes only: `<`, `>`, `&`, `'` and `"`.
-
-```
-{{ htmlEscape "Hugo & Caddy > Wordpress & Apache" }} → "Hugo &amp; Caddy &gt; Wordpress &amp; Apache"
-```