-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
100 lines (91 loc) · 2.22 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
site_name: glm-py
repo_url: https://github.com/AquaticEcoDynamics/glm-py
repo_name: AquaticEcoDynamics/glm-py
theme:
name: material
logo: img/glm_icon_text.png
custom_dir: docs/custom_theme/
features:
- content.code.copy
- navigation.tabs
- navigation.top
- navigation.indexes
- navigation.sections
palette:
# Palette toggle for light mode
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- css/extra.css
plugins:
- search
- blog:
blog_dir: blog
authors: true
authors_file: blog/authors.yml
list_length: 25
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_style: numpy
show_submodules: true
show_source: false
inherited_members: true
markdown_extensions:
- toc:
permalink: True
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.details
- pymdownx.superfences
- md_in_html
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra:
social:
- icon: "fontawesome/brands/github"
link: "https://github.com/"
nav:
- Home: index.md
- Install: installation.md
- How-to:
- NML: how_to/how-to-nml.md
- Plots: how_to/how-to-plots.md
- Dimensions: how_to/how-to-dimensions.md
- Outflows: how_to/how-to-outflows.md
- Inflows: how_to/how-to-inflows.md
- GLM JSON: how_to/how-to-glm_json.md
- API Reference:
- NML: nml.md
- Simulation: simulation.md
- Plots: plots.md
- Dimensions: dimensions.md
- Inflows: inflows.md
- Outflows: outflows.md
- GLM_JSON: json-to-nml.md
- Example sims:
- Sparkling: sparkling.md
- Contributing:
- contributing/index.md
- Blog:
- blog/index.md