-
Notifications
You must be signed in to change notification settings - Fork 63
/
mkdocs.yml
97 lines (89 loc) · 2.64 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
site_name: pynapple
repo_url: https://github.com/pynapple-org/pynapple
theme:
name: 'material'
logo: images/Icon/Pynapple_final_icon_2.png
favicon: images/Icon/Pynapple_final_icon.png
palette:
primary: 'green'
features:
- navigation.tabs
markdown_extensions:
- attr_list
- admonition
- tables
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.top
- search.highlights
- search.share
- search.suggest
plugins:
- search
- gallery:
examples_dirs:
- docs/api_guide
- docs/examples
gallery_dirs:
- docs/generated/api_guide
- docs/generated/examples
conf_script: docs/gallery_conf.py
- gen-files:
scripts:
- docs/gen_ref_pages.py # Specify the script to generate the code reference pages
- literate-nav:
nav_file: docs/SUMMARY.md # Specify the navigation file for literate-style navigation
- section-index # Enable the section-index plugin for generating a section index
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
show_source: true
members_order: source
inherited_members: true
show_root_heading: true
separate_signature: true
nav:
- Overview: index.md
- Install: installation.md
- Quickstart: quickstart.md
- Application guide: generated/api_guide
- Analysis examples: generated/examples
- External projects: external.md
- Pynajax - GPU acceleration: pynajax.md
- Modules : reference/
- Contributing: CONTRIBUTING.md
- Authors: AUTHORS.md
- History: HISTORY.md
extra_javascript:
- 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
- extra.css
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- md_in_html
- pymdownx.tabbed:
alternate_style: true