-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
52 lines (46 loc) · 1.21 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
site_name: youte
site_url: https://youte.readthedocs.io/
repo_url: https://github.com/QUT-Digital-Observatory/youte
repo_name: youte
site_description: youte is a command-line tool that collects and tidies YouTube video metadata and comments from YouTube Data API v.3
nav:
- Home: index.md
- Documentation: documentation.md
- Tutorial: tutorial.md
- API reference: reference.md
theme:
name: material
logo: images/youte-logo-white-transparent-1x.png
favicon: images/youte-logo-black-transparent.png
features:
- content.code.copy
palette:
- scheme: default
primary: red
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: red
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_root_heading: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences