forked from storpool/sp-variant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
49 lines (48 loc) · 1.13 KB
/
mkdocs.yml
File metadata and controls
49 lines (48 loc) · 1.13 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
# SPDX-FileCopyrightText: 2023 StorPool <support@storpool.com>
# SPDX-License-Identifier: BSD-2-Clause
theme:
name: material
features:
- navigation.instant
- navigation.tracking
- toc.integrate
- toc.follow
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
site_name: sp-variant
repo_url: https://github.com/storpool/sp-variant
repo_name: sp-variant
site_author: storpool
site_url: https://storpool.com/
site_dir: site/docs
nav:
- 'index.md'
- 'Changelog': 'changes.md'
- 'API Reference': 'api.md'
markdown_extensions:
- toc:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite:
- pymdownx.superfences:
plugins:
- mkdocstrings:
handlers:
python:
paths: [python]
options:
heading_level: 3
show_root_heading: true
- search
watch:
- 'python/sp_variant'