我使用Jekyll集合来渲染一组页面:
collections:
mycoll:
output: true
permalink: /:collection/:path/
一组文件:
_mycoll/
el1.md
el2.md
el3.md
...
但是我需要避免生成这个集合的某些页面,就像发布草稿一样。
有可能吗?
答案 0 :(得分:3)
在jekyll 2.x下,使用_config.yml
exclude array:
exclude:
- _mycoll/el2.md
使用Jekyll 3.x,使用帖子/收集项目published
前端变量
---
title: toto
published: false
---
content