-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
73 lines (66 loc) · 1.89 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
site_name: imas2xarray
site_url: https://imas2xarray.readthedocs.io
repo_url: https://github.com/duqtools/imas2xarray
repo_name: GitHub
nav:
- Home: index.md
- Variables: variables.md
- Python API: api/index.md
- Examples: examples.md
- Notebook - Variables: notebooks/xarray.ipynb
- Notebook - 2D data: notebooks/xarray-2D.ipynb
- Notebook - Ions: notebooks/xarray-ions.ipynb
- Contributing: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- 🔗 Source code: https://github.com/duqtools/imas2xarray
- 🔗 Issues: https://github.com/duqtools/imas2xarray/issues
- 🔗 Duqtools: https://duqtools.readthedocs.io
theme:
name: material
primary: blue
accent: red
custom_dir: docs/overrides
palette:
accent: indigo
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- markdown_include.include:
base_path: docs
- pymdownx.extra
- pymdownx.arithmatex:
generic: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
# https://mkdocstrings.github.io/usage/
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_style: numpy
docstring_options:
ignore_init_summary: yes
show_submodules: no
show_source: true
docstring_section_style: list
members_order: alphabetical
show_category_heading: no
merge_init_into_class: yes
- mknotebooks:
execute: false
- gen-files:
scripts:
- docs/genvariables.py
watch:
- src/imas2xarray
- docs/