-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
104 lines (99 loc) · 2.37 KB
/
Copy pathmkdocs.yml
File metadata and controls
104 lines (99 loc) · 2.37 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
101
102
103
104
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/getting-started.md
- getting-started/installation.md
- Language:
- language/overview.md
- language/variables.md
- language/types.md
- language/operators.md
- language/control-flow.md
- language/functions.md
- language/closures.md
- language/classes.md
- language/inheritance.md
- language/interfaces.md
- language/traits.md
- language/pattern-matching.md
- language/error-handling.md
- language/memory.md
- language/arrays.md
- language/maps.md
- language/imports-exports.md
- language/packages.md
- language/concurrency.md
- language/async.md
- Specification:
- specification/ffi.md
- specification/bytecode.md
- specification/memory-model.md
- Compiler:
- compiler/architecture.md
- compiler/llvm-backend.md
- compiler/vm.md
- Tooling:
- tooling/cli.md
- tooling/formatter.md
- tooling/package-manager.md
- tooling/test-runner.md
- Reference:
- reference/APIReference.md
- reference/StdlibReference.md
- Guides:
- guides/ExamplesGuide.md
- guides/BestPractices.md
- Resources:
- faq.md
- ReleaseNotes.md
- Roadmap.md