-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
96 lines (87 loc) · 2.47 KB
/
mkdocs.yml
File metadata and controls
96 lines (87 loc) · 2.47 KB
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
site_name: metablate
theme:
name: "material"
logo: assets/ablate.png
favicon: assets/ablate_fav.png
features:
- navigation.instant
- navigation.path
- navigation.top
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "#002d72"
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "#002d72"
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
icon:
repo: fontawesome/brands/github
repo_url: https://github.com/danielk333/ablate
extra_css:
- assets/style.css
markdown_extensions:
- footnotes
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- section-index
- gen-files:
scripts:
- scripts/generate_api_docs.py
- literate-nav:
nav_file: nav.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: table
show_docstring_functions: true
show_docstring_modules: true
show_docstring_description: true
- mkdocs-jupyter:
execute: true
include_source: True
include: ["*.py", "*.ipynb"]
ignore: ["_wip*"]
# ignore: ["*"]
theme: dark
nav:
- Home: index.md
- Getting started: getting_started.md
- Examples:
- examples/index.md
- alpha_beta: examples/alpha_beta.py
- alpha_beta_partial_data: examples/alpha_beta_partial_data.py
- calculate_gamma_lambda: examples/calculate_gamma_lambda.py
- compare_alpha_beta_num_ablation: examples/compare_alpha_beta_num_ablation.py
- compare_sputtering: examples/compare_sputtering.py
- drag_versus_size: examples/drag_versus_size.py
- example_ablation_model_run: examples/example_ablation_model_run.py
- fit_alpha_beta: examples/fit_alpha_beta.py
- heat_coef_versus_size: examples/heat_coef_versus_size.py
- height_rescaling: examples/height_rescaling.py
- plot_msise00: examples/plot_msise00.py
- plot_pymsis: examples/plot_pymsis.py
- Notebooks:
- notebooks/index.md
- Reference: reference/