-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
64 lines (61 loc) · 1.41 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
site_name: pyopenstates
site_url: https://openstates.github.io/pyopenstates/
site_author: James Turk
site_description: A Python module for accessing the Open States API.
copyright: Copyright © 2021 Open States
repo_url: https://github.com/openstates/pyopenstates
repo_name: openstates/pyopenstates
edit_uri: edit/main/docs/
theme:
logo: assets/openstates.svg
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
#- navigation.tabs
- navigation.sections
- navigation.top
- content.tabs.link
icon:
repo: fontawesome/brands/github
markdown_extensions:
- admonition
- def_list
- pymdownx.highlight
- pymdownx.tabbed
- pymdownx.superfences
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: restructured-text
rendering:
show_source: false
show_root_full_path: false
show_root_toc_entry: true
show_root_heading: true
heading_level: 3
watch:
- src/
extra_css:
- assets/extra.css
nav:
- 'index.md'
- 'reference.md'
- 'downloads.md'
- 'changelog.md'