-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
75 lines (71 loc) · 2.15 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
site_name: Python Easyverein Documentation
repo_url: https://github.com/waza-ari/python-easyverein
docs_dir: docs
theme:
name: "material"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_bases: false
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
separate_signature: true
unwrap_annotated: true
markdown_extensions:
- admonition
- tables
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- toc:
toc_depth: 4
permalink: true
title: Page contents
nav:
- index.md
- usage.md
- "API Reference":
- "CRUD Operations": api/crud.md
- "Recycle Bin / Soft Delete": api/recycle_bin.md
- "Endpoint Specific":
- "Booking": api/endpoints/booking.md
- "Contact Details": api/endpoints/contact_details.md
- "Custom Field": api/endpoints/custom_field.md
- "Invoice": api/endpoints/invoice.md
- "Invoice Item": api/endpoints/invoice_item.md
- "Member":
- "Member": api/endpoints/member.md
- "Custom Field Associations": api/endpoints/member_custom_field.md
- "Member Group Associations": api/endpoints/member_member_group.md
- "Member Group": api/endpoints/member_group.md
- "Model Reference":
- "Base Model": models/base.md
- "Booking": models/booking.md
- "Contact Details": models/contact_details.md
- "Custom Field": models/custom_field.md
- "Invoice": models/invoice.md
- "Invoice Item": models/invoice_item.md
- "Member": models/member.md
- "Member Groups": models/member_group.md
- "Member Group Associations": models/member_member_group.md
- "Member Custom Field Associations": models/member_custom_field.md
- "Changelog": changelog.md
watch:
- docs
- easyverein