-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebarsDoc.ts
22 lines (20 loc) · 879 Bytes
/
sidebarsDoc.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
sidebar: [
{ type: 'doc', id: 'README', label: 'Introduction' },
{
type: 'category', label: 'Language Reference',
link: { type: 'doc', id: 'reference/README' },
items: [
{ type: 'doc', id: 'reference/includes', label: 'Includes' },
{ type: 'doc', id: 'reference/parameters', label: 'Parameters' },
{ type: 'doc', id: 'reference/memories', label: 'Memories' },
{ type: 'doc', id: 'reference/external-blocks', label: 'External blocks' },
{ type: 'doc', id: 'reference/blocks', label: 'Blocks' },
{ type: 'doc', id: 'reference/signals-and-buses', label: 'Signals and buses' },
]
},
{ type: 'link', href: '/editor/', label: 'Setting up your editor' },
],
};
export default sidebars;