This repository was archived by the owner on Mar 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
81 lines (74 loc) · 2.09 KB
/
mkdocs.yaml
File metadata and controls
81 lines (74 loc) · 2.09 KB
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
79
80
81
site_name: Himon
site_url: https://himon.readthedocs.io/en/latest/
site_description: A Python wrapper for League of Comic Geeks.
site_author: Jonah Jackson
copyright: MIT
repo_url: https://github.com/Buried-In-Code/Himon
repo_name: Buried-In-Code/Himon
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
extra:
social:
- icon: material/github
link: https://github.com/Buried-In-Code
- icon: material/language-python
link: https://pypi.org/project/himon/
- icon: material/mastodon
link: https://fosstodon.org/@BuriedInCode
- icon: simple/matrix
link: https://matrix.to/#/#The-Dev-Environment:matrix.org
markdown_extensions:
- pymdownx.highlight:
auto_title: true
- pymdownx.inlinehilite
- pymdownx.superfences
nav:
- Home: index.md
- himon:
- Package: himon/__init__.md
- exceptions: himon/exceptions.md
- league_of_comic_geeks: himon/league_of_comic_geeks.md
- sqlite_cache: himon/sqlite_cache.md
- himon.schemas:
- Package: himon/schemas/__init__.md
- comic: himon/schemas/comic.md
- generic: himon/schemas/generic.md
- series: himon/schemas/series.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