-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
62 lines (59 loc) · 1.39 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
60
61
62
site_name: Simple Plugin Framework
repo_url: https://github.com/IVIyg0t/SimplePluginFramework
repo_name: SimplePluginFramework
theme:
name: material
palette:
scheme: slate
primary: light green
accent: indigo
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- search.highlight
- search.suggest
- toc.follow
nav:
- Home: index.md
- Changelog: changelog.md
- Guides:
- Hello World: Notebooks/HelloWorld.ipynb
- API:
- PluginMount: API/PluginMount.md
markdown_extensions:
- abbr
- attr_list
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- mkdocs-jupyter
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: spacy
merge_init_into_class: true
heading_level: 2
allow_inspection: true
show_bases: true
show_source: true
show_root_heading: true
show_root_full_path: false