-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
94 lines (85 loc) · 2.69 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
site_name: streamjoy
site_description: Enjoy animating images into GIFs and MP4s!
repo_url: https://github.com/ahuang11/streamjoy
repo_name: ahuang11/streamjoy
theme:
name: material
features:
- content.code.copy
logo: assets/logo.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- pymdownx.tabbed
- pymdownx.magiclink
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
find_stubs_package: true
watch:
- docs
- streamjoy
nav:
- Read me!: index.md
- Supported formats: supported_formats.md
- How do I...: how_do_i.md
- Package design: package_design.md
- Example recipes:
- Air temperature: example_recipes/air_temperature.md
- Sine wave: example_recipes/sine_wave.md
- CO2 timeseries: example_recipes/co2_timeseries.md
- Temperature anomaly: example_recipes/temperature_anomaly.md
- Sea ice: example_recipes/sea_ice.md
- OISST globe: example_recipes/oisst_globe.md
- Gender gapminder: example_recipes/gender_gapminder.md
- Stream code: example_recipes/stream_code.md
- Nice orbit: example_recipes/nice_orbit.md
- NMME forecast: example_recipes/nmme_forecast.md
- API reference:
- Core: api_reference/core.md
- Models: api_reference/models.md
- Streams: api_reference/streams.md
- Renderers: api_reference/renderers.md
- Wrappers: api_reference/wrappers.md
- Settings: api_reference/settings.md
extra_css:
- stylesheets/extra.css