-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
78 lines (72 loc) · 2.11 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
site_name: Mokkari
site_url: https://mokkari.readthedocs.io/en/stable/
site_description: A python wrapper for the Metron Comic Book Databaser API.
site_author: Brian Pepple
copyright: GPL-3.0
repo_url: https://github.com/Metron-Project/mokkari
repo_name: Metron-Project/mokkari
theme:
name: material
features:
- content.code.copy
- navigation.expand
- navigation.top
icon:
repo: material/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
auto_title: true
- pymdownx.inlinehilite
- pymdownx.superfences
nav:
- Home: index.md
- Mokkari:
- Session: mokkari/session.md
- Sqlite_Cache: mokkari/sqlitecache.md
- Exceptions: mokkari/exceptions.md
- Schemas:
- Arc: mokkari/schemas/arc.md
- BaseResource: mokkari/schemas/base.md
- Character: mokkari/schemas/character.md
- Creator: mokkari/schemas/creator.md
- GenericItem: mokkari/schemas/generic.md
- Imprint: mokkari/schemas/imprint.md
- Issue: mokkari/schemas/issue.md
- Publisher: mokkari/schemas/publisher.md
- Reprint: mokkari/schemas/reprint.md
- Series: mokkari/schemas/series.md
- Team: mokkari/schemas/team.md
- Universe: mokkari/schemas/universe.md
- Variant: mokkari/schemas/variant.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: True
show_root_full_path: False
show_category_heading: True
# Docstrings
docstring_style: google
docstring_section_style: spacy
line_length: 100
merge_init_into_class: True
show_signature_annotations: True
# Additional
show_source: False
- include-markdown