-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
52 lines (49 loc) · 1.41 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
site_name: RCL
site_url: https://docs.ruuda.nl/rcl
repo_url: https://github.com/ruuda/rcl
strict: true
theme:
name: null
custom_dir: docs/theme
markdown_extensions:
- codehilite
- footnotes
- toc:
permalink: true
permalink_title: null
nav:
- "Overview": "index.md"
- "User guide":
- "Tutorial": "tutorial.md"
- "Installation": "installation.md"
- "Syntax highlighting": "syntax_highlighting.md"
- "Generating files": "generating_files.md"
- "Using Ninja": "using_ninja.md"
- "Changelog": "changelog.md"
- "Language guide":
- "Syntax": "syntax.md"
- "Strings": "strings.md"
- "Null": "null.md"
- "Imports": "imports.md"
- "Functions": "functions.md"
- "Types": "types.md"
- "Glossary": "glossary.md"
- "Language reference":
- "Standard library": "stdlib.md"
- "Dict": "type_dict.md"
- "List": "type_list.md"
- "Set": "type_set.md"
- "String": "type_string.md"
- "Python bindings": "python_bindings.md"
- "Command reference":
- "rcl": "rcl.md"
- "rcl build": "rcl_build.md"
- "rcl evaluate": "rcl_evaluate.md"
- "rcl format": "rcl_format.md"
- "rcl highlight": "rcl_highlight.md"
- "rcl query": "rcl_query.md"
- "Development":
- "About": "about.md"
- "Testing": "testing.md"
- "Grammars": "grammars.md"
- "Tree-sitter": "tree_sitter.md"