-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
68 lines (58 loc) · 1.71 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: dscim Documentation
repo_url: "https://github.com/climateimpactlab/dscim"
theme:
name: "material"
palette:
# Palette toggle for light mode
- scheme: CILlight
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
docstring_style: "numpy"
summary: true
separate_signature: true
show_object_full_path: true
show_root_toc_entry: false
- search
markdown_extensions:
- "pymdownx.snippets"
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Home: index.md
- API Reference:
- dscim.menu:
- baseline: menu/baseline.md
- main_recipe: menu/main_recipe.md
- risk_aversion: menu/risk_aversion.md
- equity: menu/equity.md
- simple_storage: menu/simple_storage.md
- decorators: menu/decorators.md
- dscim.preprocessing:
- input_damages: preprocessing/input_damages.md
- midprocessing: preprocessing/midprocessing.md
- preprocessing: preprocessing/preprocessing.md
- dscim.utils:
- functions: utils/functions.md
- menu_runs: utils/menu_runs.md
- rff: utils/rff.md
- utils: utils/utils.md
- Changelog: changelog.md