获取
Syntax
SHORTCODE.Get PARAM
Returns
any
通过位置或名称指定参数。在markdown中调用短代码时,请使用位置参数或命名参数,但不能同时使用两者。
位置参数
此短代码调用使用位置参数:
content/about.md
{{< myshortcode "你好" "世界" >}}
通过位置检索参数:
layouts/shortcodes/myshortcode.html
{{ printf "%s %s." (.Get 0) (.Get 1) }} → 你好 世界.
命名参数
此短代码调用使用命名参数:
content/about.md
{{< myshortcode greeting="你好" firstName="世界" >}}
通过名称检索参数:
layouts/shortcodes/myshortcode.html
{{ printf "%s %s." (.Get "greeting") (.Get "firstName") }} → 你好 世界.