-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
58 lines (54 loc) · 1.52 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
site_name: AeroKit
repo_name: aerokit
repo_url: https://github.com/jgressier/aerokit
edit_uri: '' #disables edit button
theme:
name: material
icon:
repo: fontawesome/brands/github
# language: en
# features:
# - navigation.tabs
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- User Guide:
- User Guide: userguide.md
- aero.Isentropic: userguide/aero.Isentropic.md
- aero.MassFlow: userguide/aero.MassFlow.md
- aero.ShockWave: userguide/aero.ShockWave.md
- Examples:
- List of examples: examples.md
- aero.Isentropic: examples/aero.Isentropic.ipynb
- aero.MassFlow: examples/aero.MassFlow.ipynb
- aero.ShockWave: examples/aero.ShockWave.ipynb
- common.numspectral: examples/common.numspectral.ipynb
- stability.OrrSommerfeld: examples/stability.OrrSommerfeld.ipynb
- instance.riemann: examples/instance.riemann.ipynb
- Change log: changelog.md
- About: about.md
plugins:
- search
- include-markdown
- mkdocs-jupyter:
execute: True
include_source: False
- exclude:
glob:
- "requirements.txt"
- "*/.ipynb_checkpoints"
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: false
show_source: true
show_category_heading: true
selection:
#docstring_style: "restructured-text" # default is "google"
filters:
- "!^_" # exclude all members starting with _
watch:
- aerokit