-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
77 lines (70 loc) · 1.95 KB
/
mkdocs.yaml
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
site_name: Esak
site_url: https://esak.readthedocs.io/en/latest/
site_description: A Python wrapper for the Marvel API.
site_author: Brian Pepple, Robert Kuykendall
copyright: GPL-3.0
repo_url: https://github.com/Metron-Project/Esak
repo_name: Metron-Project/Esak
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
- esak:
- Package: esak/__init__.md
- exceptions: esak/exceptions.md
- session: esak/session.md
- sqlite_cache: esak/sqlite_cache.md
- esak.schemas:
- Package: esak/schemas/__init__.md
- base: esak/schemas/base.md
- character: esak/schemas/character.md
- comic: esak/schemas/comic.md
- creator: esak/schemas/creator.md
- event: esak/schemas/event.md
- generic: esak/schemas/generic.md
- series: esak/schemas/series.md
- story: esak/schemas/story.md
- urls: esak/schemas/urls.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