forked from Wasted-Audio/hvcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
64 lines (61 loc) · 1.84 KB
/
mkdocs.yml
File metadata and controls
64 lines (61 loc) · 1.84 KB
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
site_name: Heavy Compiler Collection
repo_url: https://github.com/Wasted-Audio/hvcc
repo_name: Wasted-Audio/hvcc
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- search.suggest
- content.code.copy
palette:
scheme: slate # Dark mode support
logo: img/logo-compressed.svg
favicon: img/favicon.ico
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
hooks:
- docs/mkdocs_hooks.py
nav:
- Home: index.md
- Getting Started:
- Introduction: getting-started/index.md
- Patching Guide: getting-started/patching.md
- Generators:
- Overview: generators/index.md
- Daisy:
- Basics: generators/daisy.md
- Board JSON: generators/daisy_json.md
- DPF: generators/dpf.md
- FMOD: generators/fmod.md
- Javascript: generators/javascript.md
- OWL: generators/owl.md
- Pd External: generators/pdext.md
- Unity: generators/unity.md
- Wwise: generators/wwise.md
- Custom: generators/custom.md
- Reference:
- MIDI: reference/midi.md
- C API: reference/c.md
- C++ API: reference/cpp.md
- Supported Objects: reference/objects/supported.md
- Unsupported Objects: reference/objects/unsupported.md
- Heavy Lang: reference/ir/heavy_lang.md
- Heavy IR: reference/ir/heavy_ir.md
- Heavy GUI IR: reference/ir/heavy_gui_ir.md
- ADRs:
- Overview: adr/index.md
- GUI Send/Receive: adr/ADR-001-GUI-Send-Receive.md
- pd2gui Parser: adr/ADR-002-pd2gui-Parser.md
- Control Rate Expr: adr/ADR-003-Control-Rate-Expr.md
- Signal Rate Expr: adr/ADR-004-Signal-Rate-Expr.md
- Changelog: changelog.md
- Contributing: contributing.md
- Code of Conduct: code_of_conduct.md