summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/_common/go-html-template-package.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/_common/go-html-template-package.md')
-rw-r--r--docs/content/en/functions/_common/go-html-template-package.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/content/en/functions/_common/go-html-template-package.md b/docs/content/en/functions/_common/go-html-template-package.md
deleted file mode 100644
index 57992ea66..000000000
--- a/docs/content/en/functions/_common/go-html-template-package.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-_comment: Do not remove front matter.
----
-
-Hugo uses Go's [text/template] and [html/template] packages.
-
-The text/template package implements data-driven templates for generating textual output, while the html/template package implements data-driven templates for generating HTML output safe against code injection.
-
-By default, Hugo uses the html/template package when rendering HTML files.
-
-To generate HTML output that is safe against code injection, the html/template package escapes strings in certain contexts.
-
-[text/template]: https://pkg.go.dev/text/template
-[html/template]: https://pkg.go.dev/html/template