-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
115 lines (110 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: FIO Wrapper
repo_name: "fio_wrapper"
repo_url: "https://github.com/jplacht/fio_wrapper"
theme:
name: "material"
plugins:
- optimize
- typeset
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: light
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- search.suggest
- search.highlight
- content.tabs.link
- navigation.indexes
- content.tooltips
- navigation.path
- content.code.annotate
- content.code.copy
- content.code.select
- navigation.sections
- navigation.tabs
plugins:
- mkdocstrings:
handlers:
python:
paths: [fio_wrapper]
options:
show_source: true
show_bases: true
show_root_heading: false
show_root_toc_entry: false
heading_level: 3
show_if_no_docstring: true
inherited_members: true
members_order: source
separate_signature: true
unwrap_annotated: true
filters: ["!^_"]
merge_init_into_class: true
docstring_section_style: table
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
- search
- coverage:
page_name: coverage # default
html_report_dir: coverage # default
markdown_extensions:
- abbr
- attr_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
nav:
- FIO Wrapper:
- FIO Wrapper: index.md
- Usage: usage.md
- Available Routes: 'routes.md'
- Timeouts: 'timeouts.md'
- Caching: 'caching.md'
- Components:
- FIO: fio.md
- Adapter: fio_adapter.md
- Config: config.md
- Decorators: decorator.md
- Exceptions: exception.md
- Endpoints (FIO 1.0):
- Building: 'endpoints/building.md'
- Exchange: 'endpoints/exchange.md'
- Group: 'endpoints/group.md'
- LocalMarket: 'endpoints/localmarket.md'
- Material: 'endpoints/material.md'
- Planet: 'endpoints/planet.md'
- Recipe: 'endpoints/recipe.md'
- Sites: 'endpoints/sites.md'
- Storage: 'endpoints/storage.md'
- Models:
- Building: 'models/building.md'
- Exchange: 'models/exchange.md'
- Group: 'models/group.md'
- LocalMarket: 'models/localmarket.md'
- Material: 'models/material.md'
- Planet: 'models/planet.md'
- Recipe: 'models/recipe.md'
- Sites: 'models/sites.md'
- Storage: 'models/storage.md'
- Test Coverage:
- Coverage Report: coverage.md