-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
54 lines (51 loc) · 1.19 KB
/
mkdocs.yml
File metadata and controls
54 lines (51 loc) · 1.19 KB
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
site_name: python-github-bot-api
repo_url: https://github.com/NiklasRosenstein/python-github-bot-api
repo_name: Niklasrosenstein/python-github-bot-api
docs_dir: content
theme:
name: material
palette:
scheme: slate
primary: teal
accent: green
features:
- navigation.sections
watch:
- ../src
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [../src]
options:
heading_level: 3
show_root_heading: true
show_root_full_path: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
separate_signature: true
show_signature_annotations: true
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
nav:
- index.md
- api.md
- changelog.md
- Examples:
- examples/app.md
- examples/webhook.md
- examples/app-and-webhook.md
- examples/oauth2.md