-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
61 lines (59 loc) · 1.3 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
site_name: Omnipy
repo_url: https://github.com/fairtracks/omnipy
site_url: https://omnipy.readthedocs.io/
theme:
name: material
custom_dir: docs/overrides
language: en
palette:
- scheme: omnipy
features:
- content.code.annotation
- navigation.tabs
- search.highlight
- toc.integrate
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- codehilite
- extra
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- mdx_truly_sane_lists
# - attr_list
# - footnotes
# - md_in_html
nav:
- Omnipy: index.md
- Install: install.md
- Python typing: python_typing.md
- Getting started: getting_started.md
- Contributing: contributing.md
- Release notes: release_notes.md
- Code Reference: reference/
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [ src ]
options:
show_root_heading: true
show_if_no_docstring: true
show_submodules: true
show_signature_annotations: true
separate_signature: true
inherited_members: true