📝 write start docs

This commit is contained in:
yanyongyu
2021-12-24 19:02:11 +08:00
parent 6ed87f1910
commit 75e2ca77df
9 changed files with 1496 additions and 1335 deletions

View File

@ -14,67 +14,81 @@
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
guide: [
tutorial: [
{
type: "category",
label: "开始",
collapsible: false,
items: [
"guide/index",
"guide/installation",
"guide/getting-started",
"guide/creating-a-project",
"guide/basic-configuration",
],
},
{
type: "category",
label: "编写插件",
collapsible: false,
items: [
"guide/loading-a-plugin",
"guide/creating-a-plugin",
"guide/creating-a-matcher",
"guide/creating-a-handler",
"guide/end-or-start",
],
},
{
type: "category",
label: "协议适配",
collapsible: false,
items: [
"guide/cqhttp-guide",
"guide/ding-guide",
"guide/mirai-guide",
"guide/feishu-guide",
],
},
],
advanced: [
{
type: "category",
label: "进阶",
collapsible: false,
items: [
"advanced/index",
"advanced/scheduler",
"advanced/permission",
"advanced/runtime-hook",
"advanced/export-and-require",
{
type: "category",
label: "高级事件处理",
items: [{ type: "autogenerated", dirName: "advanced/handler" }],
},
],
},
{
type: "category",
label: "发布",
collapsible: false,
items: ["advanced/publish-plugin"],
type: "autogenerated",
dirName: "guide",
},
// {
// type: "category",
// label: "指南",
// items: [
// {
// type: "category",
// label: "开始",
// collapsible: false,
// items: [
// "guide/index",
// "guide/installation",
// "guide/getting-started",
// "guide/creating-a-project",
// "guide/basic-configuration",
// ],
// },
// {
// type: "category",
// label: "编写插件",
// collapsible: false,
// items: [
// "guide/loading-a-plugin",
// "guide/creating-a-plugin",
// "guide/creating-a-matcher",
// "guide/creating-a-handler",
// "guide/end-or-start",
// ],
// },
// {
// type: "category",
// label: "协议适配",
// collapsible: false,
// items: [
// "guide/cqhttp-guide",
// "guide/ding-guide",
// "guide/mirai-guide",
// "guide/feishu-guide",
// ],
// },
// ],
// },
// {
// type: "category",
// label: "进阶",
// items: [
// {
// type: "category",
// label: "进阶",
// collapsible: false,
// items: [
// "advanced/index",
// "advanced/scheduler",
// "advanced/permission",
// "advanced/runtime-hook",
// "advanced/export-and-require",
// {
// type: "category",
// label: "高级事件处理",
// items: [{ type: "autogenerated", dirName: "advanced/handler" }],
// },
// ],
// },
// {
// type: "category",
// label: "发布",
// collapsible: false,
// items: ["advanced/publish-plugin"],
// },
// ],
// },
],
api: [{ type: "autogenerated", dirName: "api" }],