-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
59 lines (59 loc) · 1.54 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
docs: [
{
type: "doc",
id: "overview",
},
{
type: "doc",
id: "how_to_start",
},
{
type: "doc",
id: "whats_new",
},
{
type: "category",
label: "API",
collapsed: false,
link: {
type: 'doc',
id: 'api/overview'
},
items: [
"api/methods",
"api/events_bus",
"api/events",
"api/properties",
"api/editor_api_methods",
"api/toolbar_methods",
"api/toolbar_controls",
],
},
{
type: "category",
label: "Guides",
collapsed: false,
link: {
type: 'generated-index',
title: 'Guides',
//description: '',
//slug: '/category/docusaurus-guides',
keywords: ['guides'],
image: '/img/docusaurus.png',
},
items: [
"guides/initialization",
"guides/configuration",
"guides/localization",
"guides/loading_data",
"guides/working_with_richtext",
"guides/customization",
"guides/event_handling",
"guides/angular_integration",
"guides/react_integration",
"guides/vuejs_integration",
],
},
],
}