-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
115 lines (112 loc) · 2.73 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
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
site_name: AAct
site_description: AAct is a Python library for building asynchronous communicative actors.
strict: true
site_url: https://aact.dev/
repo_url: https://github.com/ProKil/aact
repo_name: ProKil/aact
theme:
name: "material"
logo: assets/aact.svg
favicon: assets/favicon.svg
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme)"
scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/lightbulb
name: "Switch to light mode"
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/lightbulb-auto-outline
name: "Switch to system preference"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
extra:
version:
provider: mike
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
nav:
- Get Started:
- Welcome to AAct: index.md
- Why use AAct: why.md
- Installation: install.md
- Usage:
usage.md
- API Documentation:
- AAct:
- Nodes: api/nodes.md
- Messages: api/messages.md
- AAct CLI:
- Commands: api/cli.md
- Applications:
- Robotics:
- Robot Teleoperation: applications/robot-teleoperation.md
plugins:
- social
- search
- mike:
alias_type: symlink
canonical_version: latest
- exclude:
glob:
- theme/announce.html
- plugins/*
- __pycache__/*
- mkdocstrings:
handlers:
python:
paths: [.]
options:
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
extensions:
- docs/plugins/griffe_doclinks.py
import:
- url: https://docs.python.org/3/objects.inv
domains: [py, std]