This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmkdocs.yml
63 lines (63 loc) · 1.87 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
site_name: C3 Documentation
markdown_extensions:
- footnotes
nav:
- About C3: 'index.md'
- Installing:
- Setup: 'setup.md'
- Your first project: 'firstproject.md'
- A quick primer on C3: 'primer.md'
- Feature list: 'allfeatures.md'
- Documentation:
- Changes from C: 'changesfromc.md'
- Comparisons with other languages: 'compare.md'
- Examples: 'examples.md'
- FAQ: 'faq.md'
- Modules: 'modules.md'
- Types: 'types.md'
- Define: 'define.md'
- Arrays: 'arrays.md'
- Vectors: 'vectors.md'
- Functions: 'functions.md'
- Statements: 'statements.md'
- Expressions: 'expressions.md'
- Variables: 'variables.md'
- Optionals and error handling: 'optionals.md'
- Compile time evaluation: 'compiletime.md'
- Contracts: 'contracts.md'
- Generics: 'generics.md'
- Macros: 'macros.md'
- Reflection: 'reflection.md'
- Operator overloading: 'operators.md'
- Any and interfaces: 'anyinterfaces.md'
- Undefined behaviour: 'undefinedbehaviour.md'
- Conversions: 'conversion.md'
- Precedence: 'precedence.md'
- Builtins: 'builtins.md'
- Libraries: 'libraries.md'
- Standard Library: 'standard_library.md'
- More ideas: 'ideas.md'
- Naming rules: 'naming.md'
- Comments & Docs: 'comments.md'
- Attributes: 'attributes.md'
- Inline asm: 'asm.md'
- C Interop: 'cinterop.md'
- Grammar: 'syntax.md'
- More code examples: 'sample.md'
- Specification: 'specification.md'
- Build system:
- Introduction: 'buildintro.md'
- Project Structure: 'project.md'
- Commands: 'buildcommands.md'
- Development:
- Contribute: 'contribute.md'
- Changes: 'changes.md'
- Rejected ideas: 'rejectedideas.md'
theme:
name: readthedocs
hljs_languages:
- yaml
- rust
- ebnf
- bnf
dev_addr: 192.168.1.4:8000