-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
167 lines (161 loc) · 4.02 KB
/
Copy pathmkdocs.yml
File metadata and controls
167 lines (161 loc) · 4.02 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
site_name: Kiwi
site_description: A high-level, dynamically-typed scripting language designed to make everyday programming tasks feel natural and expressive.
site_url: https://fuseraft.github.io/kiwi
repo_url: https://github.com/fuseraft/kiwi
repo_name: fuseraft/kiwi
edit_uri: edit/main/docs/
docs_dir: docs
theme:
name: material
palette:
- scheme: default
primary: green
accent: light green
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: green
accent: light green
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.action.edit
icon:
repo: fontawesome/brands/github
logo: assets/logo.svg
favicon: assets/logo.svg
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.details
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- tables
plugins:
- search
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fuseraft/kiwi
nav:
- Home: README.md
- Getting Started:
- Introduction: introduction.md
- CLI: cli.md
- REPL: repl.md
- Running Scripts: runners.md
- Debugger (kdb): kdb.md
- Language Reference:
- Variables: variables.md
- Types: types.md
- Type Hints: type_hints.md
- Conditionals: conditionals.md
- Operators: operators.md
- Keywords: keywords.md
- Comments: comments.md
- Docstrings: docstrings.md
- Scoping: scoping.md
- Functions:
- Functions: functions.md
- Lambdas: lambdas.md
- Decorators: decorators.md
- Control Flow:
- Control Structures: control_structures.md
- Loops: loops.md
- Generators: generators.md
- Error Handling: error_handling.md
- Collections:
- Lists: lists.md
- Ranges: ranges.md
- Hashmaps: hashmaps.md
- Strings: strings.md
- Dates: dates.md
- Object-Oriented:
- Structs: structs.md
- Abstract Structs: abstract_structs.md
- Enums: enums.md
- Operator Overloading: operator_overloading.md
- Modules & I/O:
- Packages: packages.md
- Events: events.md
- Builtins: builtins.md
- Console I/O: console_io.md
- Standard Library:
- Overview: lib/README.md
- bench: lib/bench.md
- cli: lib/cli.md
- collections: lib/collections.md
- compress: lib/compress.md
- console: lib/console.md
- crypto: lib/crypto.md
- csv: lib/csv.md
- curl: lib/curl.md
- date: lib/date.md
- dotenv: lib/dotenv.md
- encode: lib/encode.md
- env: lib/env.md
- error: lib/error.md
- faker: lib/faker.md
- fio: lib/fio.md
- fmt: lib/fmt.md
- hashable: lib/hashable.md
- http: lib/http.md
- httpserver: lib/httpserver.md
- ipc: lib/ipc.md
- iter: lib/iter.md
- json: lib/json.md
- list: lib/list.md
- log: lib/log.md
- math: lib/math.md
- path: lib/path.md
- pipeline: lib/pipeline.md
- protobuf: lib/protobuf.md
- reflector: lib/reflector.md
- regex: lib/regex.md
- signal: lib/signal.md
- smtp: lib/smtp.md
- socket: lib/socket.md
- sqlite: lib/sqlite.md
- stat: lib/stat.md
- std: lib/std.md
- stdin: lib/stdin.md
- stopwatch: lib/stopwatch.md
- string: lib/string.md
- sys: lib/sys.md
- table: lib/table.md
- task: lib/task.md
- template: lib/template.md
- tester: lib/tester.md
- text: lib/text.md
- time: lib/time.md
- udp: lib/udp.md
- xml: lib/xml.md
- yaml: lib/yaml.md