-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
59 lines (59 loc) · 1.19 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
site_name: EnderChest Documentation
repo_url: https://github.com/OpenBagTwo/EnderChest
repo_name: EnderChest
site_author: Gili "OpenBagTwo" Barlev
docs_dir: docs
edit_uri: ''
theme:
name: material
favicon: img/favicon.png
logo: img/enderchest.png
features:
- content.code.copy
palette:
primary: purple
nav:
- Home: index.md
- About: about.md
- Installation Instructions: installation.md
- Quick-Start Guide: usage.md
- Best Practices: suggestions.md
- Contribution Guide: contrib.md
- Full CLI Documentation: cli.md
- Python API Docs: reference/
plugins:
- search
- autorefs
- mike
- gen-files:
scripts:
- docs/gen_clidocs.py
- docs/gen_apidocs.py
- section-index
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
enable_inventory: true
- coverage:
page_name: coverage
html_report_dir: htmlcov
watch:
- enderchest
extra:
version:
provider: mike
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- sane_lists