This repository has been archived by the owner on Aug 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
74 lines (65 loc) · 1.45 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
# Project Information
site_name: "Pycord Developer Network"
site_description: Documentation, Guides & More for Pycord Developers.
repo_url: https://github.com/pycord/pycord-v3
repo_name: pycord/pycord-v3
copyright: "©2022 VincentRPS & PDN Contributors"
docs_dir: developer
watch: [pycord]
# Navigation Tree
nav:
- Home: index.md
- API Reference:
- api/index.md
- Apps: api/apps.md
- Assets: api/assets.md
- Channels: api/channels.md
- Events: api/events.md
- Guild: api/guild.md
- Mixins: api/mixins.md
# Theme Configuration
theme:
name: material
locale: en
features:
- navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
font:
text: Roboto
code: Roboto Mono
favicon: assets/logo.png
logo: assets/logo.png
icon:
repo: fontawesome/brands/github
highlightjs: true
# Extensions
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
# Plugins
plugins:
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3.10/objects.inv
rendering:
heading_level: 2
show_root_full_path: false
show_root_heading: true
show_source: false
selection:
docstring_style: google
- search
# Extra Customization
extra:
generator: false
extra_css:
- assets/theme.css