-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
70 lines (66 loc) · 2.28 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
site_name: Easier WebAssembly with twr-wasm
site_url: https://twiddlingbits.dev/docsite/
repo_url: https://github.com/twiddlingbits/twr-wasm
edit_uri: 'tree/main/docs'
site_description: Documentation and examples to execute C/C++ code in a browser, using WebAssembly and clang directly.
site_dir: azure/docsite/
theme:
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
plugins:
- search
- meta-descriptions
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: index.md
- Getting Started:
- Installation: gettingstarted/installation.md
- Hello World: gettingstarted/helloworld.md
- Basic Steps: gettingstarted/basicsteps.md
- Passing Arguments: gettingstarted/parameters.md
- Consoles: gettingstarted/stdio.md
- Events: gettingstarted/events.md
- Character Encoding: gettingstarted/charencoding.md
- Debugging: gettingstarted/debugging.md
- Compiler, Linker, Memory: gettingstarted/compiler-opts.md
- Examples:
- Overview: examples/examples-overview.md
- hello world: examples/examples-helloworld.md
- divcon: examples/examples-divcon.md
- terminal: examples/examples-terminal.md
- multi-io: examples/examples-multi-io.md
- fft: examples/examples-fft.md
- balls: examples/examples-balls.md
- pong: examples/examples-pong.md
- maze: examples/examples-maze.md
- callC: examples/examples-callc.md
- library: examples/examples-lib.md
- libc++: examples/examples-libcxx.md
- C/C++ API:
- General: api/api-c-general.md
- Localization: api/api-c-localization.md
- Draw 2D: api/api-c-d2d.md
- Console Char I/O: api/api-c-con.md
- Standard C Library: api/api-c-stdlib.md
- libc++: api/api-libcpp.md
- Audio: api/api-c-audio.md
- TypeScript API:
- Modules: api/api-ts-modules.md
- Consoles: api/api-ts-consoles.md
- Memory: api/api-ts-memory.md
- Libraries: api/api-ts-library.md
- More:
- Wasm Runtime Limitations: more/wasm-problem.md
- Import Resolution: more/imports.md
- SharedArrayBuffers Note: more/production.md
- Building the Source: more/building.md