-
-
Notifications
You must be signed in to change notification settings - Fork 102
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
In Jekyll, there is a folder you can make called _drafts which automatically tells Jekyll that these posts should not
be processed without setting the drafts argument. In Front Matter, it does not automatically make posts in _drafts
as drafts, you have to set draft: true in the front matter which is redundant.
Describe the solution you'd like
In the configuration file, either add a drafts folder configuration or in frontMatter.content.pageFolders have a
setting called draft or something equivalent.
Additional context
The second solution presented here:
...
"frontMatter.content.pageFolders": [
/* Directory of all of the draft/unpublished posts*/
{
"title": "drafts",
"path": "[[workspace]]/_drafts",
"drafts": true
},
/* Directory of all of the published post */
{
"title": "_posts",
"path": "[[workspace]]/_posts"
}
],
...Yohn
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request