diff --git a/docs/content/templates/functions.md b/docs/content/templates/functions.md index eaeb3cac4..dd66d8f01 100644 --- a/docs/content/templates/functions.md +++ b/docs/content/templates/functions.md @@ -893,11 +893,11 @@ e.g. `{{ . }}` ### 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 can be appended to a url. E.g. +Takes a set of key-value pairs and returns a [query string](https://en.wikipedia.org/wiki/Query_string) that can be appended to a URL. E.g. - Search + Search -will be rendered as +will be rendered as Search @@ -1020,7 +1020,7 @@ Every `Page` has a `Kind` attribute that shows what kind of page it is. While th ``` {{ with .Site.GetPage "section" "blog" }}{{ .Title }}{{ end }} ``` - + This method wil return `nil` when no page could be found, so the above will not print anything if the blog section isn't found. The valid page kinds are: *home, section, taxonomy and taxonomyTerm.*