-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
59 lines (53 loc) · 1.77 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
# Docs: https://www.mkdocs.org/user-guide/configuration/
site_name: "Conjuring: reusable global Invoke tasks"
site_dir: public
repo_url: https://github.com/andreoliwa/conjuring
# https://www.mkdocs.org/user-guide/configuration/#build-directories
theme:
name: material
language: en
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/
palette:
primary: deep orange
features:
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-copy-button
- content.code.copy
# TODO: fail build if some page is missing from nav
nav:
- README.md
- features.md
- spells.md
- related.md
- CHANGELOG.md
# https://www.mkdocs.org/user-guide/configuration/#plugins
plugins:
- search
# https://github.com/mkdocstrings/mkdocstrings
- mkdocstrings:
handlers:
python:
# https://mkdocstrings.github.io/python/usage/#paths
paths: [src]
options:
# https://mkdocstrings.github.io/python/usage/configuration/general/#show_source
show_source: true
# https://mkdocstrings.github.io/python/usage/configuration/headings/#show_root_heading
show_root_heading: true
# https://www.mkdocs.org/user-guide/configuration/#markdown_extensions
markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/reference/lists/
- def_list
- pymdownx.tasklist:
custom_checkbox: true
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/
- admonition
- pymdownx.details
- pymdownx.superfences
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences