summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>2015-11-20 20:41:16 +0100
committerAnthony Fok <foka@debian.org>2015-11-20 13:30:27 -0700
commita5bd101d272bbf0f4de78313741f0f5ec322887f (patch)
tree1d9bd6fa1690bc665d878e03be393705d3711b9b /docs
parentc5a4c07b892128f36ec4638bfd44e5404437e066 (diff)
Docs: fix typo in template function section
Diffstat (limited to 'docs')
-rw-r--r--docs/content/templates/functions.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/content/templates/functions.md b/docs/content/templates/functions.md
index 503702290..f16a5388c 100644
--- a/docs/content/templates/functions.md
+++ b/docs/content/templates/functions.md
@@ -715,6 +715,4 @@ responses of APIs.
{{ $resp := getJSON "https://api.github.com/repos/spf13/hugo/readme" }}
{{ $resp.content | base64Decode | markdownify }}
- The response of the Github API contains the base64-encoded version of the [README.md](https://github.com/spf13/hugo/blob/master/README.md) in the Hugo repository.
-Now we can decode it and parse the Markdown. The final output will look similar to the
-rendered version in Github.
+The response of the Github API contains the base64-encoded version of the [README.md](https://github.com/spf13/hugo/blob/master/README.md) in the Hugo repository. Now we can decode it and parse the Markdown. The final output will look similar to the rendered version on Github.