-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
106 lines (93 loc) · 2.88 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
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
105
106
site_name: Amun Programming Language
site_url: https://amun-lang.github.io/docs
site_description: General purpose system programming language written using C++ and LLVM
site_author: amun-lang
copyright: Copyright © 2022 Amr Heshan
repo_name: amun-lang/Amun
repo_url: https://github.com/amun-lang/docs
edit_uri: blob/master/docs/
theme:
name: material
logo: assets/logo.svg
favicon: assets/logo.svg
icon:
repo: fontawesome/brands/github
edit: material/pencil
font:
code: JetBrains Mono
palette:
- scheme: default
primary: white
accent: orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: black
accent: orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- header.autohide
- navigation.instant
- navigation.tracking
- navigation.indexes
- content.code.annotate
- content.code.copy
plugins:
- offline
nav:
- Home: index.md
- Build: build.md
- Compiler Options: compiler_options.md
- Documentation:
- Hello World: reference/hello.md
- Comments: reference/comments.md
- Values: reference/values.md
- Assignment: reference/assignments.md
- Variables: reference/variables.md
- Destructuring: reference/destructuring.md
- Const: reference/const.md
- Struct: reference/struct.md
- Tuples: reference/tuples.md
- Enum: reference/enum.md
- Arrays: reference/arrays.md
- Switch: reference/switch.md
- For: reference/for.md
- While: reference/while.md
- Break: reference/break.md
- Continue: reference/continue.md
- If: reference/if.md
- Defer: reference/defer.md
- Function: reference/function.md
- Infix Function: reference/infix_function.md
- Prefix Function: reference/prefix_function.md
- Postfix Function: reference/postfix_function.md
- Operator Overloading: reference/operator_overloading.md
- Lambda: reference/lambda.md
- Memory: reference/memory.md
- Varargs: reference/varargs.md
- Cast: reference/cast.md
- Type Size: reference/type_size.md
- Type Align: reference/type_align.md
- Value Size: reference/value_size.md
- Generic: reference/generic.md
- Type alias: reference/type_alias.md
- Directives: reference/directives.md
- SIMD: reference/simd.md
- Contribute: contribution.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/amun-lang
name: AmrDeveloper on Github
- icon: fontawesome/brands/twitter
link: https://twitter.com/AmrDeveloper
name: AmrDeveloper on Twitter
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/amrdeveloper
name: AmrDeveloper on Linkedin
- icon: fontawesome/brands/medium
link: https://amrdeveloper.medium.com
name: AmrDeveloper on Medium