-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
143 lines (139 loc) · 3.67 KB
/
Copy pathsidebars.js
File metadata and controls
143 lines (139 loc) · 3.67 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
document: [
'document/introduction',
/*{
label: '智能卡',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/智能卡/HYM4616A4',
'document/智能卡/HYM4616A7',
'document/智能卡/HYM4616B4',
'document/智能卡/HYM4616C7',
],
},
{
label: '读卡器',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/读卡器/HYC901S',
'document/读卡器/HYC902S',
'document/读卡器/HYC921',
'document/读卡器/HYB620',
],
},
{
label: '安全芯片',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/安全芯片/HY9840',
'document/安全芯片/HY5950&HY5960',
],
},
{
label: '身份证阅读器',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/身份证阅读器/HYC-100',
'document/身份证阅读器/HYC-600',
'document/身份证阅读器/HYC-700',
'document/身份证阅读器/HYS-100',
'document/身份证阅读器/HYS-940',
'document/身份证阅读器/HYS-980',
'document/身份证阅读器/HYS-701',
],
},
{
label: '行业终端',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/行业终端/高性价比工控主机HYP2000',
'document/行业终端/高性能边缘计算网关HYP3000',
'document/行业终端/高性能边缘计算网关HYP3001',
],
},
{
label: '工控主板',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/工控主板/工业控制主板HYB3568',
],
},*/
{
label: '核心板',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'document/核心板/MT6762',
],
},
],
solution: [ //解决方案
'solution/introduction',
//'solution/智能档案管理系统',
],
opensource: [ //开源项目
'opensource/introduction',
{
label: '嵌入式开发资源',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'opensource/Embeded_Source/tools',
'opensource/Embeded_Source/hardware',
'opensource/Embeded_Source/software',
'opensource/Embeded_Source/gui',
'opensource/Embeded_Source/rtos',
'opensource/Embeded_Source/security',
'opensource/Embeded_Source/others',
],
},
],
share: [ //资源分享
'share/introduction',
'share/软件开发相关图书',
'share/硬件开发相关图书',
'share/管理类图书',
'share/常用软件',
{
label: 'CISSP',
type: 'category',
link: {
type: 'generated-index',
},
items: [
'share/CISSP/域一.安全和风险管理',
'share/CISSP/域二.资产安全',
'share/CISSP/域三.安全架构和工程',
'share/CISSP/域四.通信与网络安全',
'share/CISSP/域五.身份与访问管理',
'share/CISSP/域六.安全评估与测试',
'share/CISSP/域七.安全运营',
'share/CISSP/域八.软件开发安全',
],
},
]
}
module.exports = sidebars