以下のyamlコードをコピーしてサンプルページのフロントマターとして使用できます。
このURLをgithubの問題に貼り付けて、バグや質問を提出するときにセットアップを共有できます。
Handlebars
テンプレート
{{#with city as | city |}}
{{#with city.location as | loc |}}
{{city.name}}: {{loc.north}} {{loc.east}}
{{/with}}
{{/with}}
準備スクリプト
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
入力
{
city: {
name: "San Francisco",
summary: "San Francisco is the <b>cultural center</b> of <b>Northern California</b>",
location: {
north: "37.73,",
east: -122.44,
},
population: 883305,
},
}
出力
San Francisco: 37.73, -122.44