forked from ec-jrc/pyPoseidon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
56 lines (51 loc) · 1.17 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
---
site_name: "pyPoseidon"
use_directory_urls: false
repo_url: "https://github.com/ec-jrc/pyPoseidon"
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: blue
toggle:
icon: material/lightbulb
name: "Switch to light mode"
nav:
- Overview : index.md
- Installation : installation.md
- Structure : structure.md
- User Guide :
- "Meteo": meteo.md
- "Dem": dem.md
- "Boundary": boundary.md
- "Mesh": mesh.md
- "Model": model.md
- "Utilities": utils.md
- Development: development.md
- API : api.md
markdown_extensions:
- "admonition"
- "codehilite"
- "pymdownx.tilde"
- "pymdownx.details"
- "pymdownx.superfences"
- toc:
permalink: true
plugins:
- "search"
- "mkdocstrings":
handlers:
python:
rendering:
show_root_heading: true
show_object_full_path: false
show_root_members_full_path: false