次のyamlコードをコピーして、サンプルページのフロントマターとして使用できます。
このURLをgithubのissueに貼り付けて、バグを提出したり質問したりするときに、セットアップを共有できます
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