你可以复制下面的 yaml 代码,并将其用作示例页面的 frontmatter。
你可以将此 URL 粘贴到 github 问题中,以便在提交 bug 或问题时分享你的设置
Handlebars
模板
{{#each people}}
{{.}} lives in {{lookup ../cities @index}}
{{/each}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
输入
{
people: ["Nils", "Yehuda"],
cities: [
"Darmstadt",
"San Francisco",
],
}
输出
Nils lives in Darmstadt
Yehuda lives in San Francisco