mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-16 20:53:59 +02:00
815 B
815 B
title, description, categories, keywords, params
title | description | categories | keywords | params | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Params | Returns a collection of the shortcode arguments. |
|
When you call a shortcode using positional arguments, the Params
method returns a slice.
{{</* myshortcode "Hello" "world" */>}}
{{ index .Params 0 }} → Hello
{{ index .Params 1 }} → world
When you call a shortcode using named arguments, the Params
method returns a map.
{{</* myshortcode greeting="Hello" name="world" */>}}
{{ .Params.greeting }} → Hello
{{ .Params.name }} → world