Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add categories in sidebar nav for Pieces tools #517

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
96 changes: 57 additions & 39 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,49 +34,67 @@ const sidebars: SidebarsConfig = {
]
},
{
type: 'doc',
id: 'extensions-plugins/vscode',
label: 'VS Code Extension',
},
{
type: 'doc',
id: 'extensions-plugins/web-extension',
label: 'Web Extension',
},
{
type: 'doc',
id: 'extensions-plugins/jetbrains',
label: 'JetBrains Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/obsidian',
label: 'Obsidian Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/visual-studio',
label: 'Visual Studio Extension',
},
{
type: 'doc',
id: 'extensions-plugins/sublime',
label: 'Sublime Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/azure-data-studio',
label: 'Azure Data Studio',
type: 'category',
label: 'IDEs & Editors',
items: [
{
type: 'doc',
id: 'extensions-plugins/jetbrains',
label: 'JetBrains Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/sublime',
label: 'Sublime Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/visual-studio',
label: 'Visual Studio Extension',
},
{
type: 'doc',
id: 'extensions-plugins/vscode',
label: 'VS Code Extension',
},
{
type: 'doc',
id: 'extensions-plugins/jupyterlab',
label: 'JupyterLab Extension',
},
{
type: 'doc',
id: 'extensions-plugins/azure-data-studio',
label: 'Azure Data Studio',
},
]
},
{
type: 'doc',
id: 'extensions-plugins/jupyterlab',
label: 'JupyterLab Extension',
type: 'category',
label: 'Productivity',
items: [
{
type: 'doc',
id: 'extensions-plugins/obsidian',
label: 'Obsidian Plugin',
},
{
type: 'doc',
id: 'extensions-plugins/teams',
label: 'Microsoft Teams App',
},
],
},
{
type: 'doc',
id: 'extensions-plugins/teams',
label: 'Microsoft Teams App',
type: 'category',
label: 'Web Browsers',
items: [
{
type: 'doc',
id: 'extensions-plugins/web-extension',
label: 'Web Extension',
},
]
},
]
},
Expand Down