-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
74 lines (67 loc) · 1.97 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
74
site_name: numcodecs-wasm
strict: true
markdown_extensions:
- footnotes
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: true
noclasses: true
- pymdownx.arithmatex:
generic: true
extra_javascript:
- js/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
theme:
name: readthedocs
highlightjs: false
nav:
- Home: index.md
- Documentation: api/
- Links:
- GitHub: https://github.com/juntyr/numcodecs-rs
- PyPI: https://pypi.org/project/numcodecs-wasm/
plugins:
- gen-files:
scripts:
- docs/generate_api.py
- literate-nav:
nav_file: SUMMARY.md
- exclude:
glob:
- rs/katex.html
- generate_api.py
- requirements.txt
- search
- autorefs
- mkdocstrings:
enable_inventory: true
handlers:
python:
options:
docstring_section_style: list
docstring_style: numpy
show_if_no_docstring: true
filters: [
"!^_$", "!^_[^_]", "!^__", "__init__",
"!observe_encode", "!observe_decode",
]
members_order: source
group_by_category: false
show_source: false
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
show_root_toc_entry: false
merge_init_into_class: true
summary:
attributes: false
classes: true
functions: true
modules: true
inventories:
- https://docs.python.org/3.12/objects.inv
- https://numcodecs.readthedocs.io/en/v0.15.0/objects.inv
- https://numcodecs-observers.readthedocs.io/en/v0.1.1/objects.inv