Fabricator.js:有没有办法从 child 模板访问 material 前言?

Fabricator.js: Is there a way to access material front matter from a child template?

在我 parent.html 的制造商应用程序中,我有...

---
title: awesome
other: also awesome
---
{{> widgetTemplate}}
{{other}}

然后在我的child.html中我有类似

的东西
<h1>This is {{this.parent.title}}</h1>

我知道 this.parent.title 不起作用,但有人知道是否有办法从 child 模板访问标题前面 material,例如 parent模板像其他模板一样访问其前端内容,而无需为每个模板引入 javascript?

经过实验而不是前面的内容,我可以在模板中简单地定义我需要的变量:

{{> widgetTemplate title="awesome"}}

然后在模板中

<h1>This is {{title}}</h1>