-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
90 lines (75 loc) · 2.23 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: gd.py
site_author: nekitdev
site_description: An API wrapper for Geometry Dash written in Python.
repo_name: nekitdev/gd.py
repo_url: https://github.com/nekitdev/gd.py
remote_branch: github-pages
nav:
- Index: "index.md"
- Reference:
- Client: "reference/client.md"
- Encoding: "reference/encoding.md"
- Enums: "reference/enums.md"
- Songs: "reference/songs.md"
- Artist: "reference/artist.md"
- Tasks: "reference/tasks.md"
- API:
- Levels:
- Editor: "reference/api/editor.md"
- Objects: "reference/api/objects.md"
- Header: "reference/api/header.md"
- Color Channels: "reference/api/color_channels.md"
- HSV: "reference/api/hsv.md"
- Guidelines: "reference/api/guidelines.md"
- Database:
- Save Manager: "reference/api/save_manager.md"
- Database: "reference/api/database.md"
- Levels: "reference/api/levels.md"
- Folder: "reference/api/folder.md"
- Artist: "reference/api/artist.md"
- Song: "reference/api/song.md"
- Rewards: "reference/api/rewards.md"
- Like: "reference/api/like.md"
- Memory:
- Internal: "reference/memory/internal.md"
- Changelog: "changelog.md"
- Security: "security.md"
- Code of Conduct: "code_of_conduct.md"
- Contributing: "contributing.md"
watch:
- docs
- gd
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: light blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: light blue
toggle:
icon: material/toggle-switch
name: Switch to dark mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: source
show_signature_annotations: true
paths: [gd]
import:
- https://docs.python.org/3/objects.inv
- https://nekitdev.github.io/versions/objects.inv
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences