-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (73 loc) · 1.82 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
site_name: Red-Utils
site_description: Collection of utility scripts/functions that I use frequently.
site_url: https://red-utils.readthedocs.io/en/latest/
repo_name: redjax/red-utils
repo_url: https://github.com/redjax/red-utils
exclude_docs: |
drafts/
theme:
name: material
highlightjs: true
icon:
repo: fontawesome/brands/git
font:
text: Open Sans
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: red
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: red
accent: amber
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.tabs
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
# options:
# allow_inspection: true
# show_bases: true
# show_source: false
# show_object_full_path: false
# show_category_heading: true
# show_symbol_type_heading: false
- section-index
markdown_extensions:
- admonition
- markdown_include.include:
base_path: .
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
use_pygments: true
pygments_lang_class: true