-
Notifications
You must be signed in to change notification settings - Fork 71
/
mkdocs.yml
90 lines (84 loc) · 2.89 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
80
81
82
83
84
85
86
87
88
89
90
site_name: aiotieba
site_description: aiotieba开发文档
site_url: https://aiotieba.cc/
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.sections
- search.suggest
- search.highlight
language: zh
repo_name: lumina37/aiotieba
repo_url: https://github.com/lumina37/aiotieba/
nav:
- 介绍: index.md
- 教程:
- 入门教程: tutorial/start.md
- 异步编程入门教程: tutorial/async_start.md
- 实用微脚本合集: tutorial/many_utils.md
- 参考文档:
- 客户端 (Client): ref/client.md
- 枚举: ref/enums.md
- 配置: ref/config.md
- 异常处理: ref/exception.md
- 类型定义:
- forum_detail: ref/classdef/forum_detail.md
- threads: ref/classdef/threads.md
- posts: ref/classdef/posts.md
- comments: ref/classdef/comments.md
- searches: ref/classdef/searches.md
- user_info: ref/classdef/user_info.md
- profile: ref/classdef/profile.md
- follow_forums: ref/classdef/follow_forums.md
- self_follow_forums: ref/classdef/self_follow_forums.md
- user_contents: ref/classdef/user_contents.md
- images: ref/classdef/images.md
- replys: ref/classdef/replys.md
- ats: ref/classdef/ats.md
- follows: ref/classdef/follows.md
- fans: ref/classdef/fans.md
- blacklist: ref/classdef/blacklist.md
- blacklist_old: ref/classdef/blacklist_old.md
- dislike_forums: ref/classdef/dislike_forums.md
- square_forums: ref/classdef/square_forums.md
- bawu_info: ref/classdef/bawu_info.md
- bawu_perm: ref/classdef/bawu_perm.md
- rank_users: ref/classdef/rank_users.md
- member_users: ref/classdef/member_users.md
- blocks: ref/classdef/blocks.md
- recovers: ref/classdef/recovers.md
- recover_thread: ref/classdef/recover_thread.md
- bawu_userlogs: ref/classdef/bawu_userlogs.md
- bawu_postlogs: ref/classdef/bawu_postlogs.md
- unblock_appeals: ref/classdef/unblock_appeals.md
- bawu_blacklist: ref/classdef/bawu_blacklist.md
- statistics: ref/classdef/statistics.md
- recom_status: ref/classdef/recom_status.md
- group_msg: ref/classdef/group_msg.md
markdown_extensions:
- md_in_html
- admonition
- codehilite:
css_class: highlight
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_bases: false
show_source: false
members_order: source
extra_css:
- css/custom.css