-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
100 lines (95 loc) · 2.52 KB
/
Copy pathmkdocs.yml
File metadata and controls
100 lines (95 loc) · 2.52 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
89
90
91
92
93
94
95
96
97
98
99
100
site_name: TechScript Docs
site_url: https://techscript.is-a.dev/docs/
site_description: Official documentation for the TechScript 2.0 programming language.
site_author: Tcode-Motion
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: green
toggle:
icon: material/brightness-7
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: green
toggle:
icon: material/brightness-4
name: Switch to dark mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.code.copy
exclude_docs: |
ai/**/*
engineering/**/*
CODE_OF_CONDUCT.md
CONTRIBUTING.md
changelog.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- attr_list
- md_in_html
plugins:
- search
- minify:
minify_html: true
nav:
- Home: index.md
- Getting Started: getting-started.md
- Installation: Installation.md
- Language Guide:
- Variables: variables.md
- Types & Operators: types.md
- Operators: operators.md
- Control Flow & Loops: syntax.md
- Functions: functions.md
- Closures: closures.md
- Arrays: arrays.md
- Maps: maps.md
- Classes & OOP: classes.md
- Inheritance: inheritance.md
- Interfaces: interfaces.md
- Traits: traits.md
- Pattern Matching: pattern-matching.md
- Error Handling: exceptions.md
- Advanced concepts:
- Memory & Ownership: ownership.md
- Imports & Modules: imports.md
- Packages: packages.md
- Multithreading: multithreading.md
- Async: async.md
- FFI: ffi.md
- Architecture & Compiler:
- Compiler Architecture: CompilerArchitecture.md
- LLVM Backend: llvm-backend.md
- Bytecode VM: vm.md
- Bytecode Format: bytecode.md
- Memory Model: memory-model.md
- Toolchain Tools:
- CLI Command Reference: cli.md
- Formatter (tsfmt): formatter.md
- Package Manager (tspm): package-manager.md
- Unit Testing: testing.md
- Resources:
- API Reference: APIReference.md
- Stdlib Reference: StdlibReference.md
- Examples Guide: ExamplesGuide.md
- Best Practices: BestPractices.md
- FAQ: FAQ.md
- Release Notes: ReleaseNotes.md
- Roadmap: Roadmap.md