hugo/docs/content/en/functions/urlquery.md
2022-11-17 16:16:19 +01:00

686 B

title linktitle description date publishdate lastmod categories menu keywords signature hugoversion deprecated workson relatedfuncs aliases
urlquery urlquery Returns the escaped value of the textual representation of its arguments in a form suitable for embedding in a URL query. 2022-01-18 2022-01-18 2022-01-18
functions
docs
parent
functions
urls
urlquery INPUT [INPUT]...
false

This template code:

{{ $u := urlquery "https://" "example.com" | safeURL }}
<a href="https://example.org?url={{ $u }}">Link</a>

Is rendered to:

<a href="https://example.org?url=https%3A%2F%2Fexample.com">Link</a>