-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yaml
63 lines (60 loc) · 1.63 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
site_name: IbaDatFile
site_url: https://phil65.github.io/ibadatfile/
nav:
- Home: index.md
- API:
- ibadatfile: api/ibadatfile.md
- Contributing: contributing.md
- Changelog: changelog.md
theme:
name: material
custom_dir: docs/theme_customizations/
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.copy
- content.code.select
- content.code.annotate
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
# https://mkdocstrings.github.io/python/usage/
show_source: true
show_signature_annotations: true
show_if_no_docstring: true
inherited_members: false
# - mkapi
markdown_extensions:
# - smarty
- codehilite
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# - pymdownx.betterem
# - markdown.extensions.footnotes
# - markdown.extensions.attr_list
# - markdown.extensions.def_list
# - markdown.extensions.tables
# - markdown.extensions.abbr
# - markdown.extensions.md_in_html
use_directory_urls: false