nonebot2/archive/2.0.0a7/sidebar.config.json

160 lines
3.9 KiB
JSON
Raw Normal View History

2020-09-23 15:01:06 +00:00
{
2020-11-04 05:41:52 +00:00
"sidebar": {},
2020-09-23 15:01:06 +00:00
"locales": {
"/": {
"label": "简体中文",
"selectText": "Languages",
"editLinkText": "在 GitHub 上编辑此页",
"lastUpdated": "上次更新",
"nav": [
{
"text": "主页",
"link": "/"
},
{
"text": "指南",
"link": "/guide/"
},
2020-12-04 17:22:28 +00:00
{
"text": "进阶",
"link": "/advanced/"
},
2020-09-23 15:01:06 +00:00
{
"text": "API",
"link": "/api/"
2020-11-04 05:41:52 +00:00
},
{
2021-03-05 08:27:43 +00:00
"text": "商店",
"link": "/store"
2020-12-04 17:22:28 +00:00
},
{
"text": "更新日志",
"link": "/changelog"
2020-09-23 15:01:06 +00:00
}
],
"sidebarDepth": 2,
"sidebar": {
"/guide/": [
{
2020-12-04 17:22:28 +00:00
"title": "开始",
2020-09-23 15:01:06 +00:00
"collapsable": false,
"sidebar": "auto",
"children": [
"",
"installation",
"getting-started",
"creating-a-project",
2020-12-04 17:22:28 +00:00
"basic-configuration"
]
},
{
"title": "编写插件",
"collapsable": false,
"sidebar": "auto",
"children": [
"loading-a-plugin",
"creating-a-plugin",
"creating-a-matcher",
"creating-a-handler",
"end-or-start"
]
}
],
"/advanced/": [
{
"title": "进阶",
"collapsable": false,
"sidebar": "auto",
"children": [
"",
"scheduler",
"permission",
"runtime-hook",
"export-and-require"
]
},
{
"title": "发布",
"collapsable": false,
"sidebar": "auto",
2021-03-05 08:27:43 +00:00
"children": ["publish-plugin"]
2020-09-23 15:01:06 +00:00
}
],
"/api/": [
{
"title": "NoneBot Api Reference",
"path": "",
"collapsable": false,
"children": [
{
"title": "nonebot 模块",
"path": "nonebot"
},
{
"title": "nonebot.config 模块",
"path": "config"
},
2020-11-04 05:41:52 +00:00
{
"title": "nonebot.plugin 模块",
"path": "plugin"
},
2020-12-04 17:22:28 +00:00
{
"title": "nonebot.message 模块",
"path": "message"
},
2020-09-23 15:01:06 +00:00
{
2020-10-11 05:17:40 +00:00
"title": "nonebot.matcher 模块",
"path": "matcher"
2020-09-23 15:01:06 +00:00
},
{
"title": "nonebot.rule 模块",
"path": "rule"
},
{
"title": "nonebot.permission 模块",
"path": "permission"
},
2020-10-11 05:17:40 +00:00
{
"title": "nonebot.log 模块",
"path": "log"
},
2020-09-23 15:01:06 +00:00
{
"title": "nonebot.utils 模块",
"path": "utils"
},
2020-10-11 05:17:40 +00:00
{
"title": "nonebot.typing 模块",
"path": "typing"
},
2020-09-23 15:01:06 +00:00
{
"title": "nonebot.exception 模块",
"path": "exception"
2020-09-30 16:55:03 +00:00
},
2020-10-11 05:17:40 +00:00
{
"title": "nonebot.drivers 模块",
"path": "drivers/"
},
{
"title": "nonebot.drivers.fastapi 模块",
"path": "drivers/fastapi"
},
2020-09-30 16:55:03 +00:00
{
"title": "nonebot.adapters 模块",
"path": "adapters/"
},
{
"title": "nonebot.adapters.cqhttp 模块",
"path": "adapters/cqhttp"
2020-12-04 17:22:28 +00:00
},
{
"title": "nonebot.adapters.ding 模块",
"path": "adapters/ding"
2020-09-23 15:01:06 +00:00
}
]
}
]
}
}
}
2021-03-05 08:27:43 +00:00
}