forked from botuniverse/onebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
79 lines (78 loc) · 2.57 KB
/
mkdocs.yml
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
site_name: OneBot4All 标准
repo_name: botnutshell/onebot4all
repo_url: https://github.com/botnutshell/onebot4all
edit_uri: blob/main/specs/
docs_dir: specs
theme:
name: material
language: zh
custom_dir: specs/overrides
logo: assets/images/logo-white.png
logo_dark: assets/images/logo-black.png
favicon: assets/images/logo.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: onebot
toggle:
icon: material/weather-night
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
primary: white
scheme: slate
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
features:
- navigation.sections
- navigation.tabs
- search.suggest
- search.highlight
markdown_extensions:
- admonition
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
extra:
search:
language: jp
extra_css:
- assets/stylesheets/extra.css
nav:
- 主页: index.md
- 术语表: glossary.md
- OneBot Connect:
- 概述: connect/index.md
- 通信方式:
- HTTP: connect/communication/http.md
- HTTP Webhook: connect/communication/http-webhook.md
- 正向 WebSocket: connect/communication/websocket.md
- 反向 WebSocket: connect/communication/websocket-reverse.md
- 数据协议:
- 基本数据类型: connect/data-protocol/basic-types.md
- 事件: connect/data-protocol/event.md
- 动作请求: connect/data-protocol/action-request.md
- 动作响应: connect/data-protocol/action-response.md
- 接口定义:
- 概述: interface/index.md
- 扩展规则: interface/rules.md
- 元接口:
- 元事件: interface/meta/events.md
- 元动作: interface/meta/actions.md
- 消息接口:
- 消息数据类型: interface/message/type.md
- 消息段: interface/message/segments.md
- 消息动作: interface/message/actions.md
- 单用户接口(Private / Direct):
- 用户消息事件: interface/user/message-events.md
- 用户通知事件: interface/user/notice-events.md
- 用户动作: interface/user/actions.md
- 单级群组接口(Group):
- 群消息事件: interface/group/message-events.md
- 群通知事件: interface/group/notice-events.md
- 群动作: interface/group/actions.md
- 两级群组接口(Guild-Channel):
- 群组消息事件: interface/guild/message-events.md
- 群组通知事件: interface/guild/notice-events.md
- 群组动作: interface/guild/actions.md
- 文件接口:
- 文件动作: interface/file/actions.md