-
Notifications
You must be signed in to change notification settings - Fork 213
/
mkdocs.yml
123 lines (121 loc) · 3.36 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: Net
site_description: Net document
repo_url: https://github.com/liangjingkanji/Net
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/liangjingkanji
- icon: fontawesome/brands/qq
link: https://raw.githubusercontent.com/liangjingkanji/liangjingkanji/master/img/group-qrcode.png
- icon: fontawesome/brands/twitch
link: https://github.com/liangjingkanji/Net/discussions
site_author: 劉強東
copyright: Copyright © 2018 - 2023 劉強東
repo_name: GitHub
docs_dir: 'docs'
extra_css:
- css/extra.css
theme:
name: material
custom_dir: docs/material
favicon: img/book-open.svg
logo: img/book-open.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
font: false
language: zh
features:
- navigation.top
- navigation.prune
- navigation.footer
- navigation.instant
- search.highlight
- search.suggest
- search.share
- content.code.copy
- content.code.annotate
plugins:
- offline
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
lang:
- en
- zh
markdown_extensions:
- toc:
permalink: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- def_list
- md_in_html
- admonition
- pymdownx.highlight
- pymdownx.details
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
nav:
- 使用: index.md
- 协程请求: coroutine-request.md
- 作用域: scope.md
- 同步请求: sync-request.md
- 请求参数: request.md
- 全局配置: config.md
- 请求结果:
- 转换器: converter.md
- 自定义转换器: converter-customize.md
- 自定义结构解析: converter-struct.md
- Kotlin-Serialization: kotlin-serialization.md
- 数据类生成插件: model-generate.md
- 自动化:
- 自动加载框: auto-dialog.md
- 自动缺省页: auto-state.md
- 自动下拉刷新: auto-refresh.md
- 自动分页加载: auto-pull.md
- 切换线程: thread.md
- ViewModel: view-model.md
- 异常追踪: track.md
- 错误处理:
- 错误处理: error.md
- 单例捕获: error-single.md
- 全局捕获: error-global.md
- 自定义错误提示: error-tip.md
- 自定义异常抛出: error-throws.md
- OkHttpClient: okhttp-client.md
- 拦截器: interceptor.md
- Https证书: https.md
- Cookie: cookie.md
- 缓存: cache.md
- 标签/额外: tag.md
- 上传文件: upload-file.md
- 下载文件: download-file.md
- 进度监听: progress.md
- 取消请求: cancel.md
- 重复请求: repeat-request.md
- 搜索节流: debounce.md
- 最快请求结果: fastest.md
- 日志插件: log-recorder.md
- 日志通知: log-notice.md
- 限时/定时请求: timing.md
- Callback: callback.md
- 轮询器/倒计时: interval.md
- 社区讨论: https://github.com/liangjingkanji/Net/discussions
- 常见问题: issues.md
- 更新日志: updates.md
- 3.x文档: api/index.html