您可以复制下面的 yaml 代码,并将其用作示例页面的 frontmatter。
您可以将此 URL 粘贴到 github 问题中,以便在提交 bug 或问题时分享您的设置
Handlebars
模板
{{#with city}}
{{city.name}} (not shown because there is no city)
{{else}}
No city found
{{/with}}
准备脚本
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
输入
{
person: {
firstname: "Yehuda",
lastname: "Katz",
},
}
输出
No city found