New Group Docs
How to create new group categories for your documentation page
Create new Group Docs
First you can access the docs
folder, create a new folder and rename it to your documentation category - for example get-start
Setup Group Docs
open get-start
folder and create new json files, name it with _category_.json
Now open on _category_.json
with code editor and insert this code
{
"label": "Your doc title here...",
"position": 2, //insert number position here..
"link": {
"type": "generated-index", // no need to change
"description": "Write description about your docs group categories here..."
}
}
implementation
{
"label": "Getting Started",
"position": 2,
"link": {
"type": "generated-index",
"description": "How to work with docusa docusaurus project "
}
}
Next if you want to add a new group or document category, you can follow the same steps - don't forget to set up categories position.
Category positions will be displayed on the sidebar documentation page.