-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
86 lines (77 loc) · 2.17 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
79
80
81
82
83
84
85
86
site_name: "neatpush"
site_description: "Notify me of new manga chapters."
site_url: "https://gjeusel.github.io/neatpush/index.html"
theme:
name: "material"
# logo: "img/logo.png"
# favicon: "img/favicon.ico"
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "black"
accent: "teal"
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "black"
accent: "teal"
toggle:
icon: material/lightbulb
name: "Switch to light mode"
features:
- content.tabs.link
repo_name: "neatpush"
repo_url: "https://github.com/gjeusel/neatpush"
edit_uri: ""
site_dir: docs-build # directory where the output HTML and other files are created
# see https://www.mkdocs.org/user-guide/configuration/#preview-controls
# creates links that point directly to the target file rather than the target directory
use_directory_urls: false
nav:
- Introduction: "index.md"
- reference.md
- changelog.md
markdown_extensions:
- tables
- markdown_include.include:
base_path: docs
- toc:
permalink: true
- admonition
- pymdownx.highlight
- pymdownx.extra
- mdx_truly_sane_lists
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets:
auto_append:
- docs/abbreviations.md
plugins:
- search
- exclude:
glob:
- abbreviations.md # is not to be rendered
- mkdocstrings:
handlers:
python:
options:
# https://mkdocstrings.github.io/python/usage/#globallocal-options
docstring_style: "google"
line_length: 60
heading_level: 2
merge_init_into_class: true
show_root_heading: true
docstring_section_style: "list"
show_signature_annotations: false
separate_signature: true
extra_css:
- "css/custom.css"
extra_javascript:
- "js/custom.js"