-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (88 loc) · 2.45 KB
/
mkdocs.yml
File metadata and controls
94 lines (88 loc) · 2.45 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
theme:
name: "material"
logo: assets/logo.png
favicon: assets/favicon.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
site_name: pyorb
nav:
- Home: index.md
- Notebooks:
- getting_started_tutorial: notebooks/getting_started_tutorial.ipynb
- Examples:
- anomaly_types: examples/anomaly_types.py
- array_orbits: examples/array_orbits.py
- distribution_transform: examples/distribution_transform.py
- equinoctial_orbits: examples/equinoctial_orbits.py
- hyperbolic_orbits: examples/hyperbolic_orbits.py
- interactive_orbit: examples/interactive_orbit.py
- logo_plot: examples/logo_plot.py
- performance: examples/performance.py
- perturbation: examples/perturbation.py
- propagation: examples/propagation.py
- transfer: examples/transfer.py
- API Reference:
- api_reference/orbit.md
- api_reference/kepler.md
- api_reference/unit.md
- api_reference/const.md
- api_reference/types.md
extra_css:
- css/style.css
extra_javascript:
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
markdown_extensions:
- attr_list
- admonition
- footnotes
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
toc_depth: 4
plugins:
- search
- mkdocstrings:
enable_inventory: true
default_handler: python
handlers:
python:
options:
docstring_style: numpy
show_docstring_functions: true
show_docstring_modules: true
show_docstring_description: true
separate_signature: true
show_signature_annotations: true
show_root_heading: true
show_overloads: true
show_source: true
show_signature: true
show_submodules: true
show_root_toc_entry: true
show_root_full_path: false
heading_level: 2
- mkdocs-jupyter:
execute: true
include_source: True
include: ["*.py", "*.ipynb"]
ignore: ["_wip*"]