-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
executable file
·125 lines (124 loc) · 3.71 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
---
site_name: py4pd
docs_dir: Documentation
copyright: Copyright © 2023 | Charles K. Neimog | University of São Paulo.
theme:
logo: assets/py4pd-logo.svg
custom_dir: Documentation/overrides
logo_dark_mode: assets/py4pd-dark-home.svg
logo_light_mode: assets/py4pd-light-home.svg
favicon: assets/py4pd-favicon.png
name: material
icon:
custom: [my-icons/pd, my-icons/pdobj]
features:
- navigation.top
- navigation.sections
- navigation.instant
- navigation.tracking
- navigation.prune
- content.code.annotate
- navigation.instant
- navigation.tracking
- navigation.prune
- content.code.annotate
- content.code.copy
- navigation.tabs
- navigation.tabs.sticky
- search.highlight
- search.suggest
- toc.integrate
- toc.follow
- navigation.instant
- header.autohide
- attr_list
- md_in_html
- pymdownx.superfences
- footnotes
palette:
- media: (prefers-color-scheme)
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: white
accent: dark blue
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
accent: light blue
primary: black
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons: [Documentation/overrides/.icons]
- pymdownx.extra
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.tasklist
- pymdownx.magiclink
- pymdownx.highlight
- abbr
- toc
- attr_list
- md_in_html
- admonition
- pymdownx.details
repo_url: https://github.com/charlesneimog/py4pd
plugins: [search, social]
extra_css: [extra/extra.css]
nav:
- Home: index.md
- Installation: setup.md
- Hello World:
- Intro: projects/project1.md
- Pd Object: projects/project2.md
- First Library: projects/project3.md
- Pd Object:
- pd-users/index.md
- Py4pd Library: pd-users/py4pd-module.md
- Arguments: pd-users/args.md
- Methods: pd-users/methods.md
- Config File: pd-users/py4pd-cfg.md
- Pd Module:
- Introduction: python-users/index.md
- Creating Pd Libraries:
- Pd Objs with Python: python-users/pylibrary.md
- Object Types:
- Default: python-users/objtypes/default.md
- Image: python-users/objtypes/image.md
- Audio: python-users/objtypes/audio.md
- pd.add_object: python-users/pd.add_object.md
- pd.new_object:
- Methods: python-users/pd.new_object/methods.md
- Configuration: python-users/pd.new_object/config.md
- Py4pd Internal Module:
- Py -> Pd | Pd -> Py Interaction: python-users/data.md
- Working with Images: python-users/images.md
- Working with Audio: python-users/audio.md
- Working with Objects: python-users/objects.md
- Utilities and Info: python-users/info.md
- Publish py4pd Libraries: py4pd-libs/index.md
- libraries.md
extra:
analytics:
provider: google
property: G-E81RWT6R4V
social:
- icon: fontawesome/brands/instagram
link: https://www.instagram.com/charlesneimog/
- icon: fontawesome/brands/github
link: https://www.github.com/charlesneimog/
- icon: fontawesome/solid/paper-plane
link: mailto:[email protected]