-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
49 lines (42 loc) · 1.16 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
site_name: SQUAPE - Squish API Python Extension
repo_name: CyberAlpaca/squish-api-python-extension
repo_url: https://github.com/CyberAlpaca/squish-api-python-extension
theme:
name: "material"
logo: assets/favicon.ico
favicon: assets/favicon.ico
features:
- content.tabs.link
- content.code.annotate
- announce.dismiss
- navigation.tabs
palette:
primary: white
accent: deep purple
nav:
- Squape: index.md
- Code Reference:
- 'squape.object_tree': reference/object_tree.md
- 'squape.report': reference/report.md
- 'squape.settings': reference/settings.md
- 'squape.squishserver': reference/squishserver.md
- 'squape.video': reference/video.md
- 'squape.vps': reference/vps.md
- Squape @ PyPI: https://pypi.org/project/squape/
- Cyber Alpaca: https://cyberalpaca.com
plugins:
- search
- section-index
- mkdocstrings:
handlers:
python:
paths: [.]
options:
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
markdown_extensions:
- admonition
- pymdownx.magiclink