docs: Document querify template func
authordigitalcraftsman <digitalcraftsman@protonmail.com>
Sat, 3 Dec 2016 19:12:12 +0000 (20:12 +0100)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Sat, 3 Dec 2016 19:12:12 +0000 (20:12 +0100)
Closes #2733

docs/content/templates/functions.md

index a2c560206be9de8c6d2abc00d8bdd666dbe09111..68bebb0d7469ea52c9c4937013a298aaed7b9bab 100644 (file)
@@ -880,6 +880,16 @@ Takes a string and sanitizes it for usage in URLs, converts spaces to "-".
 e.g. `<a href="/tags/{{ . | urlize }}">{{ . }}</a>`
 
 
+### querify
+
+Takes a set of key-value pairs and returns a [`url.Values`](https://godoc.org/net/url#Values) object. The [`Encode`](https://godoc.org/net/url#Values.Encode) method turns the pairs into a [query string](https://en.wikipedia.org/wiki/Query_string) that cen be postpended to a url. E.g. 
+
+    <a href="https://www.google.com?{{ (querify "q" "test" "page" 3).Encode | safeHTML }}">Search</a>
+
+will be rendered as 
+
+    <a href="https://www.google.com?page=3&q=test">Search</a>
+
 
 ## Content Views