generated from yanyongyu/python-poetry-template
-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmkdocs.yml
146 lines (131 loc) · 3.64 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: GitHubKit Documentation
site_url: https://yanyongyu.github.io/githubkit
repo_name: yanyongyu/githubkit
repo_url: https://github.com/yanyongyu/githubkit
edit_uri: edit/master/docs/
copyright: Copyright © 2022 - 2024 GitHubKit Developers
theme:
name: material
language: en
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
# - navigation.sections
# - navigation.expand
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
# - content.action.edit
# - content.action.view
- content.code.copy
- content.code.annotate
- content.tabs.link
icon:
edit: material/pencil
view: material/eye
palette:
- media: "(prefers-color-scheme)"
primary: black
toggle:
icon: material/brightness-auto
name: Switch to Light Mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: black
toggle:
icon: material/brightness-7
name: Switch to Dark Mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: black
toggle:
icon: material/brightness-4
name: Switch to System Preference
extra_css:
- css/custom.css
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/yanyongyu/githubkit
- icon: fontawesome/brands/python
link: https://pypi.org/project/githubkit
plugins:
- search
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
- git-committers:
repository: yanyongyu/githubkit
branch: master
markdown_extensions:
- admonition
- attr_list
- footnotes
- md_in_html
- toc:
permalink: true
- tables
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
social_url_shorthand: true
user: yanyongyu
repo: githubkit
nav:
- Home:
- Introduction: index.md
- Installation: installation.md
- Contributing: contributing.md
- Quick Start:
- quickstart/index.md
- Call API with PAT: quickstart/call-api-with-pat.md
- OAuth APP Web Flow: quickstart/oauth-web-flow.md
- OAuth APP Device Flow: quickstart/oauth-device-flow.md
- GitHub APP: quickstart/github-app.md
- Usage:
- Authentication: usage/authentication.md
- Configuration: usage/configuration.md
- REST API: usage/rest-api.md
- GraphQL: usage/graphql.md
- Auto Retry: usage/auto-retry.md
- Webhooks: usage/webhooks.md
- Unit Test: usage/unit-test.md
- Error Handling: usage/error-handling.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn