Get
Syntax
SHORTCODE.Get ARG
Returns
any
Specify the argument by position or by name. When calling a shortcode within Markdown, use either positional or named argument, but not both.
Positional arguments
This shortcode call uses positional arguments:
content/about.md
{{< myshortcode "Hello" "world" >}}
To retrieve arguments by position:
layouts/shortcodes/myshortcode.html
{{ printf "%s %s." (.Get 0) (.Get 1) }} → Hello world.
Named arguments
This shortcode call uses named arguments:
content/about.md
{{< myshortcode greeting="Hello" firstName="world" >}}
To retrieve arguments by name:
layouts/shortcodes/myshortcode.html
{{ printf "%s %s." (.Get "greeting") (.Get "firstName") }} → Hello world.