-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebarsProject.ts
24 lines (22 loc) · 942 Bytes
/
sidebarsProject.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
sidebar: [
{ type: 'doc', id: 'README', label: 'Introduction' },
{ type: 'doc', id: 'digital-watch/README', label: 'Digital Watch' },
{
type: 'category', label: 'Visa',
link: { type: 'doc', id: 'visa/README' },
items: [
{ type: 'doc', id: 'visa/doc/introduction', label: 'Introduction' },
{ type: 'doc', id: 'visa/doc/assembler', label: 'Assembler' },
{ type: 'doc', id: 'visa/editor/vscode/README', label: 'Editor' },
{ type: 'doc', id: 'visa/doc/calendar', label: 'Calendar' },
{ type: 'doc', id: 'visa/doc/circuit', label: 'Circuit' },
{ type: 'doc', id: 'visa/doc/tests', label: 'Tests' },
]
},
{ type: 'doc', id: 'subleq/README', label: 'Subleq' },
{ type: 'doc', id: 'wml/README', label: 'Wml' },
],
};
export default sidebars;