在Jekyll中,我在_config.yml
中定义了一个自定义集合:
collections:
help:
output: true
permalink: /:collection/:path/
对于的源树结构
_help/product1
_help/product1/article1.md
_help/product1/index.md
它在以下位置生成文章
:/help/product1/article1/index.html
这很好,因为网址符合预期:
/help/product1/article1/
但是,索引是在
生成的/help/product1/index/index.html
这与预期不符,因为我期望的是可用的URL,例如
/help/product1/
不是
/help/product1/index/
如何为数十个索引文件和更复杂的树修复此问题?