-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
135 lines (111 loc) · 3.47 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
site_name: MIDI Scripter
site_url: https://maboroshy.github.io/midi-scripter
repo_url: https://github.com/Maboroshy/midi-scripter
nav:
- Readme: index.md # Copied from README.md by GitHub action on publish
- Overview: overview.md
- Controlling Ableton Live: ableton.md
- API Documentation:
- MIDI:
- Ports: api/midi_port.md
- Messages: api/midi_msg.md
- Utils: api/midi_note_data.md
- Open Sound Control:
- Ports: api/osc_port.md
- Message: api/osc_msg.md
- Keyboard:
- Ports: api/key_port.md
- Message: api/key_msg.md
- Mouse:
- Ports: api/mouse_port.md
- Message: api/mouse_msg.md
- Ableton Live Remote:
- Ports: api/ableton_port.md
- Message: api/ableton_msg.md
- GUI Widgets:
- Text: api/gui_text.md
- Buttons: api/gui_buttons.md
- Knob, Sliders and Bars: api/gui_sliders.md
- List Selector: api/gui_list.md
- Layout: api/gui_layout.md
- GUI Event Message: api/gui_msg.md
- Starters: api/starters.md
- Logging: api/logging.md
- Extra ports:
- File System Events:
- Port: api/fs_port.md
- Message: api/fs_event_msg.md
- Metronome: api/metronome_port.md
- Midi Ports Changes: api/midi_ports_changed.md
- Base Classes:
- Ports: api/base_ports.md
- GUI Widget: api/base_gui_widget.md
- Call: api/base_call.md
- Message: api/base_msg.md
theme:
name: material
locale: en
logo: icon.svg
favicon: icon.svg
features:
- navigation.instant
- navigation.sections
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
extra_css:
- css/style.css
- css/material.css
- css/mkdocstrings.css
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
preload_modules:
- midiscripter
docstring_section_style: 'list'
merge_init_into_class: true
line_length: 80
inherited_members: true
members_order: source
show_symbol_type_heading: true
show_symbol_type_toc: true
show_labels: false
filters:
- "!^_"
- "!^__"
show_source: false
show_root_heading: true
show_root_full_path: false
separate_signature: true
show_signature_annotations: true
extensions:
- griffe_inherited_docstrings
watch:
- .