-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (73 loc) · 2.07 KB
/
mkdocs.yml
File metadata and controls
76 lines (73 loc) · 2.07 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
site_name: CColon Documentation
site_url: https://ccolon.arne.sh/
repo_url: https://github.com/TRC-Loop/CColon
repo_name: TRC-Loop/CColon
theme:
name: material
logo: assets/ccolon.svg
favicon: assets/ccolon.svg
palette:
- scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.sections
- navigation.expand
- navigation.top
- content.code.copy
- search.suggest
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Hello World: getting-started/hello-world.md
- Interactive Shell: getting-started/repl.md
- Language Reference:
- Variables and Types: reference/variables.md
- Operators: reference/operators.md
- Control Flow: reference/control-flow.md
- Functions: reference/functions.md
- Classes: reference/classes.md
- Lists and Arrays: reference/collections.md
- Dictionaries: reference/dicts.md
- Safe Integers (sint): reference/sint.md
- Methods on Values: reference/methods.md
- Error Handling: reference/error-handling.md
- F-Strings: reference/fstrings.md
- Imports and Modules: reference/imports.md
- Comments: reference/comments.md
- Grammar (EBNF): reference/grammar.md
- Standard Library:
- console: stdlib/console.md
- math: stdlib/math.md
- random: stdlib/random.md
- json: stdlib/json.md
- fs: stdlib/fs.md
- datetime: stdlib/datetime.md
- os: stdlib/os.md
- http: stdlib/http.md
- Tools:
- Formatter: tools/formatter.md
- Bytecode Compiler: tools/bytecode.md
- Package Manager: tools/packages.md
- Examples: examples.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- tables