-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
51 lines (45 loc) · 1.05 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
site_name: Pydepot
repo_url: https://github.com/tom-bartk/pydepot
theme:
name: material
icon:
logo: material/apps-box
palette:
scheme: gruvbox
font: false
nav:
- Overview: "index.md"
- Installation: "installation.md"
- Quickstart: "quickstart.md"
- API Documentation:
- Store: "api/store.md"
- Reducer: "api/reducer.md"
- Action: "api/action.md"
- Subscriber: "api/subscriber.md"
extra_css:
- "css/extra.css"
plugins:
- autorefs
- mkdocstrings:
handlers:
python:
paths: [src]
options:
members_order: source
separate_signature: true
show_symbol_type_heading: true
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
line_length: 90
show_signature_annotations: true
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true