-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (76 loc) · 2 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
site_name: songbirdcore
site_description: music downloading engine at the heart of songbird
strict: true
site_url: https://cboin1996.github.io/songbirdcore
site_dir: public
repo_name: cboin1996/songbirdcore
repo_url: https://github.com/cboin1996/songbirdcore
edit_uri: ""
theme:
name: material
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
palette:
# Palette toggle for dark mode
- scheme: slate
primary: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for light mode
- scheme: default
primary: blue
toggle:
icon: material/weather-sunny
name: Switch to light mode
# https://www.mkdocs.org/user-guide/configuration/#validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
nav:
- Get Started:
- Welcome to songbirdcore: index.md
- API Documentation:
- songbirdcore:
- common: songbirdcore/common.md
- gdrive: songbirdcore/gdrive.md
- itunes: songbirdcore/itunes.md
- web: songbirdcore/web.md
- youtube: songbirdcore/youtube.md
- models:
- itunes_api: songbirdcore/models/itunes_api.md
- modes: songbirdcore/models/modes.md
extra:
version:
provider: mike
plugins:
- search
- mkdocstrings:
enabled: !ENV [ENABLE_MKDOCSTRINGS, true]
default_handler: python
handlers:
python:
options:
show_root_heading: true
show_root_full_path: true
show_root_toc_entry: true
docstring_section_style: list
show_source: true
show_bases: true
merge_init_into_class: true
show_symbol_type_heading: true
show_symbol_type_toc: true