Params
Syntax
SHORTCODE.Params
Returns
any
使用位置参数调用短代码时,Params
方法返回一个切片。
content/about.md
{{< myshortcode "Hello" "world" >}}
layouts/shortcodes/myshortcode.html
{{ index .Params 0 }} → Hello
{{ index .Params 1 }} → world
使用命名参数调用短代码时,Params
方法返回一个映射。
content/about.md
{{< myshortcode greeting="Hello" name="world" >}}
layouts/shortcodes/myshortcode.html
{{ .Params.greeting }} → Hello
{{ .Params.name }} → world