@@ -6,6 +6,7 @@ const paper: SidebarsConfig = {
66 {
77 type : "category" ,
88 label : "Administration" ,
9+ description : "Create, configure, and maintain a Paper server." ,
910 collapsed : true ,
1011 link : {
1112 type : "doc" ,
@@ -85,97 +86,84 @@ const paper: SidebarsConfig = {
8586 {
8687 type : "category" ,
8788 label : "Development" ,
89+ description :
90+ "Create plugins with the Paper API in order to extend Minecraft with custom and modified behavior." ,
8891 collapsed : true ,
8992 link : {
9093 type : "doc" ,
9194 id : "dev/README" ,
9295 } ,
9396 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+ } ,
94114 {
95115 type : "category" ,
96- label : "Getting started" ,
116+ label : "Event API" ,
117+ description : "Respond to and modify in-game actions" ,
97118 collapsed : true ,
98- link : {
99- type : "doc" ,
100- id : "dev/getting-started/README" ,
101- } ,
102119 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" ,
108124 ] ,
109125 } ,
110126 {
111127 type : "category" ,
112- label : "API" ,
128+ label : "Entity API" ,
129+ description : "Manipulate mobs and other entities" ,
113130 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" ] ,
158132 } ,
159133 {
160134 type : "category" ,
161- label : "Miscellaneous" ,
135+ label : "Component API (Adventure)" ,
136+ description : "Work with Minecraft's chat components" ,
162137 collapsed : true ,
163- link : {
164- type : "doc" ,
165- id : "dev/misc/README" ,
166- } ,
167138 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" ,
172142 ] ,
173143 } ,
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" ,
174161 ] ,
175162 } ,
176163 {
177164 type : "category" ,
178165 label : "Contributing" ,
166+ description : "Contribute code changes to the Paper server." ,
179167 collapsed : true ,
180168 link : {
181169 type : "doc" ,
0 commit comments