Improve .Get docs
authorcmal <paul@cmal.info>
Tue, 17 Apr 2018 09:29:25 +0000 (11:29 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 17 Apr 2018 13:39:33 +0000 (15:39 +0200)
docs/content/functions/get.md

index 24ee9d700f3b177ef74b4715375acb4b123a6ef0..f6d6a6e312cb134352d4ea118e51cf558ce15e4f 100644 (file)
@@ -20,10 +20,13 @@ needsexample: true
 ---
 
 
-`.Get` is specifically used when creating your own [shortcode template][sc].
-
+`.Get` is specifically used when creating your own [shortcode template][sc], to access the [positional and named](/templates/shortcode-templates/#positional-vs-named-parameters) parameters passed to it. When used with a numeric INDEX, it queries positional parameters (starting with 0). With a string KEY, it queries named parameters.
 
+When accessing a named parameter that does not exist, `.Get` returns an empty string instead of interrupting the build. The same goes with positional parameters in hugo version 0.40 and after. This allows you to chain `.Get` with `if`, `with`, `default` or `cond` to check for parameter existence. For example, you may now use:
 
+```
+{{ $quality := default "100" (.Get 1) }}
+```
 
 [sc]: /templates/shortcode-templates/