docs/content/en/methods/shortcode/Get.md
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.
This shortcode call uses positional arguments:
{{</* myshortcode "Hello" "world" */>}}
To retrieve arguments by position:
{{ printf "%s %s." (.Get 0) (.Get 1) }} → Hello world.
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.