1

我在我的 README.md 文件中使用 [[toc]],它会自动在目录中显示 2、3 级(##、###)标题。如果我尝试根据文档在我的配置文件中更改它

toc: { includeLevel: [1, 2] },

它没有显示任何变化?VuePress 有错误吗?

4

1 回答 1

0

您需要像这样传递参数:

md.use(require("markdown-it-table-of-contents"), {
    includeLevel: [1, 2]
});
于 2018-07-18T09:47:04.507 回答