-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
88 lines (83 loc) · 2.73 KB
/
mkdocs.yml
File metadata and controls
88 lines (83 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
site_name: Dapper
site_url: https://jnsquire.github.io/dapper/
repo_url: https://github.com/jnsquire/dapper
docs_dir: doc
theme:
name: material
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- content.code.copy
hooks:
- scripts/mkdocs_hooks.py
plugins:
- search
- mermaid2
markdown_extensions:
- attr_list
- admonition
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
not_in_nav: |
ideas-for-improvements.md
subprocess-debugging-plan.md
nav:
- Home: README.md
- Getting Started:
- Overview: getting-started/index.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- VS Code: getting-started/using-vscode.md
- Standalone Setup: getting-started/standalone-adapter.md
- Manual Testing: getting-started/manual-testing.md
- Guides:
- Async Debugging: guides/async-debugging.md
- Variable Display: guides/variable-presentation.md
- Frame Eval: guides/frame-eval.md
- Hot Reload: guides/hot-reload.md
- Watchpoints: guides/watchpoints.md
- Troubleshooting: guides/troubleshooting.md
- Examples: examples/README.md
- Reference:
- Configuration: reference/configuration.md
- LM Tools: reference/lm-tools.md
- Feature Status: reference/checklist.md
- Operational Modes: reference/operational-modes.md
- DAP Extensions: reference/dap-extensions.md
- Telemetry: reference/telemetry.md
- Development:
- Setup: development/setup.md
- Testing: development/testing.md
- Contributing: development/contributing.md
- VS Code Extension: development/vscode-extension.md
- Docs: development/docs.md
- Message Flows: development/message-flows.md
- Architecture:
- Overview: architecture/overview.md
- Concurrency: architecture/concurrency.md
- IPC: architecture/ipc.md
- Backends: architecture/backends.md
- Breakpoints: architecture/breakpoints.md
- Errors: architecture/error-handling.md
- Frame Eval Build: architecture/frame-eval/build-guide.md
- Frame Eval Backend: architecture/frame-eval/backend-architecture.md
- Frame Eval Notes: architecture/frame-eval/developer-notes.md
- sys.monitoring: architecture/sys-monitoring.md
- Analysis: architecture/current-analysis.md
- Roadmap:
- Feature Ideas: roadmap/feature-ideas.md
- "Hot Reload DEP": roadmap/dep-001-hot-reload.md
- Hot Reload Plan: roadmap/hot-reload-plan.md