🚀 Feature
Auto generate sidebar according to the docs folder structure.
Yes
Motivation
For me, it seems to be redundant to manage both the sidebars file and the docs folder structure, since the sidebars can be inferred from it.
Also, every time I add a new md file, I have to add it to the sidebar. This might not be a problem for fully manual work, but it's a problem when the md files can be generated automatically so we don't know beforehand what would be their IDs.
Pitch
Let's consider a docs folder like this:
- README.md
- api/
- a.md
- b.md
- cli/
- a.md
- b.md
We would need to set a sidebars like that to properly show this:
module.exports = {
"sidebar": [
"README",
{
"type": "category",
"label": "API",
"items": [
"api/a",
"api/b",
]
},
{
"type": "category",
"label": "CLI",
"items": [
"cli/a",
"cli/b"
]
}
]
};
This could be inferred automatically rather than requiring the user to maintain a separate file. Further customizations could be made through Front Matter in each doc. In case a folder requires personalization, a README.md could also be created for it.