mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-14 00:29:31 -04:00
1.2 KiB
1.2 KiB
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get | Returns the value of the given argument. |
|
Specify the argument by position or by name. When calling a shortcode within Markdown, use either positional or named argument, but not both.
Note
Some shortcodes support positional arguments, some support named arguments, and others support both. Refer to the shortcode's documentation for usage details.
Positional arguments
This shortcode call uses positional arguments:
{{</* myshortcode "Hello" "world" */>}}
To retrieve arguments by position:
{{ printf "%s %s." (.Get 0) (.Get 1) }} → Hello world.
Named arguments
This shortcode call uses named arguments:
{{</* myshortcode greeting="Hello" firstName="world" */>}}
To retrieve arguments by name:
{{ printf "%s %s." (.Get "greeting") (.Get "firstName") }} → Hello world.
Note
Argument names are case-sensitive.