如何将元数据与嵌套文件匹配?

How to match metadata with a nested file?

我的 _layout.jade 文件

(...)
if toc
    div(id='toc', class="")
(...)

使用 _data.json 中的变量集:

{
    "handbook": {
        "toc": true
    },
    "incidents/incidents": {
        "toc": true
    }
}

这对位于根目录的handbook.md工作正常,但不匹配位于目录incidentsincidents.md。我试图在 _data.json 中有一个空的“incidents”,但它也不匹配。

我应该如何在_data.json中引用/incidents/incidents.md

也尝试在 incidents/ 目录中添加一个 _data.json 文件。您将在此处指定该文件夹中页面的所有元数据:

{
  "incidents": {
    "toc": true
  }
}

那么 /incidents/incidents 也会有 toc 变量。