-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
63 lines (62 loc) · 1.59 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
site_name: EveryVoice TTS Toolkit Documentation
site_url: https://docs.everyvoice.ca
repo_url: https://github.com/EveryVoiceTTS/EveryVoice
repo_name: EveryVoiceTTS/EveryVoice
theme:
name: material
favicon: favicon-32x32.png
custom_dir: docs/overrides
palette:
# Palette toggle for light mode
- primary: blue
accent: light blue
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.code.copy
- content.code.select
- announce.dismiss
- content.footnote.tooltips
plugins:
- search
- macros
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [everyvoice]
extra:
homepage: https://docs.everyvoice.ca
version:
provider: mike
default: stable
markdown_extensions:
- mkdocs-typer
- mkdocs-click
- footnotes
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
nav:
- Getting Started: index.md
- Installation: install.md
- Guides:
- Getting Started: guides/index.md
- Ethical Considerations and Consequences of TTS: guides/ethics.md
- Background to TTS: guides/background.md
- Customize to your language: guides/custom.md
- How to fine-tune: guides/finetune.md
- Reference:
- How to use: reference/index.md
- Configuration: reference/configuration.md
- Advanced:
- How to Setup Code Completion for Schemas in vim: guides/schemas.md