-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmkdocs.yml
46 lines (41 loc) · 945 Bytes
/
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
site_name: sonyflake-py
docs_dir: docs/src
theme:
name: material
palette:
scheme: slate
features:
- search.suggest
- search.highlight
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
# custom_dir: docs/theme/
repo_url: https://github.com/hjpotter92/sonyflake-py
repo_name: hjpotter92/sonyflake-py
extra:
version:
provider: mike
nav:
- Home: index.md
- Quick start: quickstart.md
- Reference: reference.md
- Coverage report: https://app.codecov.io/gh/hjpotter92/sonyflake-py
- Changelog: changelog.md
plugins:
- search:
separator: '[-.\s]+'
- mkdocstrings
- minify:
minify_html: true
htmlmin_opts:
remove_empty_space: true
remove_comments: true
reduce_boolean_attributes: true
- git-revision-date
markdown_extensions:
- pymdownx.highlight
- pymdownx.keys
- pymdownx.superfences
- pymdownx.snippets