@@ -6,6 +6,7 @@ const paper: SidebarsConfig = {
6
6
{
7
7
type : "category" ,
8
8
label : "Administration" ,
9
+ description : "Create, configure, and maintain a Paper server." ,
9
10
collapsed : true ,
10
11
link : {
11
12
type : "doc" ,
@@ -85,97 +86,84 @@ const paper: SidebarsConfig = {
85
86
{
86
87
type : "category" ,
87
88
label : "Development" ,
89
+ description :
90
+ "Create plugins with the Paper API in order to extend Minecraft with custom and modified behavior." ,
88
91
collapsed : true ,
89
92
link : {
90
93
type : "doc" ,
91
94
id : "dev/README" ,
92
95
} ,
93
96
items : [
97
+ {
98
+ type : "html" ,
99
+ value : "Getting Started" ,
100
+ className : "sidebarTitle" ,
101
+ defaultStyle : true ,
102
+ } ,
103
+ "dev/getting-started/project-setup" ,
104
+ "dev/getting-started/plugin-yml" ,
105
+ "dev/getting-started/how-do-plugins-work" ,
106
+ "dev/getting-started/paper-plugins" ,
107
+ "dev/getting-started/userdev" ,
108
+ {
109
+ type : "html" ,
110
+ value : "Plugin API" ,
111
+ className : "sidebarTitle" ,
112
+ defaultStyle : true ,
113
+ } ,
94
114
{
95
115
type : "category" ,
96
- label : "Getting started" ,
116
+ label : "Event API" ,
117
+ description : "Respond to and modify in-game actions" ,
97
118
collapsed : true ,
98
- link : {
99
- type : "doc" ,
100
- id : "dev/getting-started/README" ,
101
- } ,
102
119
items : [
103
- "dev/getting-started/project-setup" ,
104
- "dev/getting-started/plugin-yml" ,
105
- "dev/getting-started/how-do-plugins-work" ,
106
- "dev/getting-started/paper-plugins" ,
107
- "dev/getting-started/userdev" ,
120
+ "dev/api/event-api/event-listeners" ,
121
+ "dev/api/event-api/custom-events" ,
122
+ "dev/api/event-api/handler-lists" ,
123
+ "dev/api/event-api/chat-event" ,
108
124
] ,
109
125
} ,
110
126
{
111
127
type : "category" ,
112
- label : "API" ,
128
+ label : "Entity API" ,
129
+ description : "Manipulate mobs and other entities" ,
113
130
collapsed : true ,
114
- link : {
115
- type : "doc" ,
116
- id : "dev/api/README" ,
117
- } ,
118
- items : [
119
- {
120
- type : "category" ,
121
- label : "Event API" ,
122
- collapsed : true ,
123
- items : [
124
- "dev/api/event-api/event-listeners" ,
125
- "dev/api/event-api/custom-events" ,
126
- "dev/api/event-api/handler-lists" ,
127
- "dev/api/event-api/chat-event" ,
128
- ] ,
129
- } ,
130
- {
131
- type : "category" ,
132
- label : "Entity API" ,
133
- collapsed : true ,
134
- items : [ "dev/api/entity-api/entity-teleport" , "dev/api/entity-api/display-entities" ] ,
135
- } ,
136
- {
137
- type : "category" ,
138
- label : "Component API (Adventure)" ,
139
- collapsed : true ,
140
- items : [
141
- "dev/api/component-api/intro" ,
142
- "dev/api/component-api/i18n" ,
143
- "dev/api/component-api/audiences" ,
144
- ] ,
145
- } ,
146
- "dev/api/pdc" ,
147
- "dev/api/custom-inventory-holder" ,
148
- "dev/api/commands" ,
149
- "dev/api/scheduler" ,
150
- "dev/api/plugin-messaging" ,
151
- "dev/api/plugin-configs" ,
152
- "dev/api/lifecycle" ,
153
- "dev/api/registries" ,
154
- "dev/api/recipes" ,
155
- "dev/api/folia-support" ,
156
- "dev/api/roadmap" ,
157
- ] ,
131
+ items : [ "dev/api/entity-api/entity-teleport" , "dev/api/entity-api/display-entities" ] ,
158
132
} ,
159
133
{
160
134
type : "category" ,
161
- label : "Miscellaneous" ,
135
+ label : "Component API (Adventure)" ,
136
+ description : "Work with Minecraft's chat components" ,
162
137
collapsed : true ,
163
- link : {
164
- type : "doc" ,
165
- id : "dev/misc/README" ,
166
- } ,
167
138
items : [
168
- "dev/misc/reading-stacktraces" ,
169
- "dev/misc/debugging" ,
170
- "dev/misc/databases" ,
171
- "dev/misc/internal-code" ,
139
+ "dev/api/component-api/intro" ,
140
+ "dev/api/component-api/i18n" ,
141
+ "dev/api/component-api/audiences" ,
172
142
] ,
173
143
} ,
144
+ "dev/api/pdc" ,
145
+ "dev/api/custom-inventory-holder" ,
146
+ "dev/api/scheduler" ,
147
+ "dev/api/plugin-messaging" ,
148
+ "dev/api/plugin-configs" ,
149
+ "dev/api/folia-support" ,
150
+ "dev/api/roadmap" ,
151
+ {
152
+ type : "html" ,
153
+ value : "Miscellaneous" ,
154
+ className : "sidebarTitle" ,
155
+ defaultStyle : true ,
156
+ } ,
157
+ "dev/misc/reading-stacktraces" ,
158
+ "dev/misc/debugging" ,
159
+ "dev/misc/databases" ,
160
+ "dev/misc/internal-code" ,
174
161
] ,
175
162
} ,
176
163
{
177
164
type : "category" ,
178
165
label : "Contributing" ,
166
+ description : "Contribute code changes to the Paper server." ,
179
167
collapsed : true ,
180
168
link : {
181
169
type : "doc" ,
0 commit comments