-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
97 lines (89 loc) · 2.54 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
site_name: aiospotify.py documentation
repo_url: https://github.com/novanai/aiospotify.py
copyright: Copyright © 2022-present novanai
theme:
name: material
font:
code: JetBrains Mono
features:
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
nav:
- Home: index.md
- Getting Started: getting_started.md
- API Reference:
- OAuth: reference/oauth.md
- Errors: reference/errors.md
- Albums: reference/albums.md
- Artists: reference/artists.md
- Audiobooks: reference/audiobooks.md
- Categories: reference/categories.md
- Chapters: reference/chapters.md
- Episodes: reference/episodes.md
- Genres: reference/genres.md
- Markets: reference/markets.md
- Player: reference/player.md
- Playlists: reference/playlists.md
- Search: reference/search.md
- Shows: reference/shows.md
- Tracks: reference/tracks.md
- Audio Features & Analysis: reference/audio.md
- Recommendations: reference/recommendations.md
- Users: reference/users.md
- Shared Models: reference/shared.md
- Enums: reference/enums.md
- Missing Type: reference/types.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- toc:
permalink: "#"
extra_javascript:
- javascript/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- css/extra.css
plugins:
- search
- minify:
minify_html: true
- include-markdown
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3.12/objects.inv
options:
docstring_section_style: list
docstring_style: numpy
group_by_category: false
heading_level: 2
inherited_members: true
members_order: source
separate_signature: true
show_bases: false
show_labels: false
show_root_full_path: false
show_root_heading: true
show_signature_annotations: true
show_source: false
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
watch:
- docs
- spotify