以下のyamlコードをコピーして、サンプルページのfrontmatterとして使用できます。
バグや質問を送信するときに、このURLをgithubの問題に貼り付けて、設定を共有できます。
Handlebars
テンプレート
helper: {{name}}
data: {{./name}} or {{this/name}} or {{this.name}}
準備スクリプト
Handlebars.registerHelper('name', function () {
return "Nils"
})
入力
{ name: "Yehuda" }
出力
helper: Nils
data: Yehuda or Yehuda or Yehuda