From 44c0939116d93fefcf61436d8c147cbaad12d6e4 Mon Sep 17 00:00:00 2001 From: Michael Schnerring <3743342+schnerring@users.noreply.github.com> Date: Thu, 10 Nov 2022 20:16:08 +0000 Subject: [PATCH] Add urlquery function docs (#1633) * Add urlquery function docs Fixes #1627 * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md * Update content/en/functions/urlquery.md Co-authored-by: Joe Mooring --- content/en/functions/urlquery.md | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 content/en/functions/urlquery.md diff --git a/content/en/functions/urlquery.md b/content/en/functions/urlquery.md new file mode 100644 index 000000000..ca00e6e6d --- /dev/null +++ b/content/en/functions/urlquery.md @@ -0,0 +1,33 @@ +--- +title: urlquery +linktitle: urlquery +description: Returns the escaped value of the textual representation of its arguments in a form suitable for embedding in a URL query. +date: 2022-01-18 +publishdate: 2022-01-18 +lastmod: 2022-01-18 +categories: [functions] +menu: + docs: + parent: "functions" +keywords: [urls] +signature: ["urlquery INPUT [INPUT]..."] +hugoversion: +deprecated: false +workson: [] +relatedfuncs: [] +aliases: [] +--- + + +This template code: + +```go-html-template +{{ $u := urlquery "https://" "example.com" | safeURL }} +Link +``` + +Is rendered to: + +```html +Link +```