-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
74 lines (67 loc) · 1.61 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
site_name: era5cli documentation
repo_url: https://github.com/eWaterCycle/era5cli
repo_name: era5cli
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- "User Guide":
- Getting started: getting_started.md
- Formulating requests: formulating_requests.md
- Dataset overview: hourly_monthly.md
- "CLI Reference":
- CLI usage: reference/cli_usage.md
- Argument overview: reference/arguments.md
- Variable overview: reference/variables.md
- "Contributing":
- contribute.md
- "Developer Documentation":
- general_development.md
- development_era5cli.md
- "Changelog":
- CHANGELOG.md
theme:
name: material
logo: assets/era5cli_logo_colors.png
favicon: assets/era5cli_favicon.png
features:
- navigation.sections
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.footer
- navigation.path
- content.code.copy
- search.suggest
icon:
repo: fontawesome/brands/github-alt
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: blue
accent: dark blue
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
primary: indigo
accent: dark blue
plugins:
- search:
lang: en
- gen-files:
scripts:
- docs/gen_reference_pages.py
extra:
generator: true
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- pymdownx.details