-
Notifications
You must be signed in to change notification settings - Fork 86
/
mkdocs.yml
48 lines (40 loc) · 1.21 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
site_name: quaternion
repo_url: "https://github.com/moble/quaternion"
plugins:
- search
- mkdocstrings:
enable_inventory: true
default_handler: python
handlers:
python:
options:
show_symbol_type_heading: true
docstring_style: numpy
markdown_extensions:
- footnotes
- toc:
permalink: true
theme:
name: "material"
#name: "mkdocs"
#name: "readthedocs"
features:
- content.code.copy
extra_css:
- style.css
extra_javascript:
- javascript/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
nav:
- "Home": README.md
- "API":
- "Numpy": numpy.md
- "Quaternion": quaternion.md
- "Time series": time_series.md
- "Means and alignment": means.md
- "Calculus": calculus.md
# [ReadTheDocs](https://readthedocs.org/) is the service that hosts the documentation, which calls
# [MkDocs](https://www.mkdocs.org/), which is the generic backbone that calls
# [mkdocstrings](https://mkdocstrings.github.io/) to generate the API documentation, which uses
# [mkdocstrings-python](https://mkdocstrings.github.io/python/) to handle python, which uses
# [griffe](https://mkdocstrings.github.io/griffe/) to handle the actual parsing of the docstrings.