-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yaml
153 lines (150 loc) · 3.91 KB
/
mkdocs.yaml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
site_name: Retsu
site_url: https://osl-incubator.github.io/retsu
repo_url: https://github.com/xmnlab/retsu.git
docs_dir: ./docs/
site_dir: ./build/
# extra_css:
# - stylesheets/extra.css
# Page tree
nav:
- index.md
- Installation: installation.md
- Changelog: changelog.md
- Contributing: contributing.md
# from gen-files
- API: api/
- Notebook page: example.ipynb
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- header.autohide
- navigation.indexes
- navigation.instant
- search.highlight
- search.share
- search.suggest
icon:
repo: fontawesome/brands/github
logo: ./images/logo.png
favicon: ./images/favicon.ico
palette:
# Palette toggle for light mode
- scheme: default
primary: white
accent: lime
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: white
accent: lime
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- macros
- autorefs
# - exclude:
# glob:
# - backends/template.md
- gen-files:
scripts:
- scripts/gen_ref_nav.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [../src]
import:
- https://docs.python.org/3/objects.inv
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: list
docstring_style: numpy
filters: ["!^_"]
heading_level: 1
inherited_members: true
merge_init_into_class: true
separate_signature: true
# show_category_heading: true
# show_modules: true
show_root_full_path: false
show_root_heading: true
# show_root_toc_entry: true
show_signature_annotations: true
show_source: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
- mkdocs-jupyter:
execute: false
ignore:
- "*.py"
- ".ipynb_checkpoints/*"
include_source: true
include_requirejs: true
markdown_extensions:
- attr_list
- admonition
- attr_list
- codehilite
- def_list
- footnotes
- md_in_html
- meta
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- docs/static/icons
- pymdownx.details
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.inlinehilite:
style_plain_text: python
- pymdownx.magiclink:
provider: github
repo_url_shortener: true
- pymdownx.saneheaders
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
extra:
project_name: "Retsu"
team:
- name: "Active maintainers"
members:
- xmnlab
- name: "Former maintainers"
members:
- xmnlab
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/xmnlab
- icon: fontawesome/brands/github
link: https://github.com/xmnlab/retsu.git
support_levels:
supported:
icon: :material-check-decagram:{ .verified }
description: Tested in CI. If this doesn't work for you, please [file an issue](https://github.com/xmnlab/retsu.git/issues/new).
bug:
icon: :material-bug:{ .bug }
description: Should work but doesn't because upstream is broken. Supported on a best-effort basis.
unsupported:
icon: :material-cancel:{ .cancel }
description: Unlikely to ever be supported or no upstream support.
copyright: "Copyright © 2022, Retsu Team"