forked from textX/textX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
64 lines (56 loc) · 1.68 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
site_name: textX
site_description: A meta-language for building Domain-Specific Languages (DSLs)
site_author: Igor Dejanović
repo_url: https://github.com/textX/textX
theme:
name: readthedocs
analytics:
gtag: UA-68681917-1
extra_css: [style.css]
nav:
- Home: index.md
- User Guide:
- Basics:
- Hello world: tutorials/hello_world.md
- Grammar: grammar.md
- Meta-model: metamodel.md
- Model: model.md
- Parser configuration: parser_config.md
- textx command: textx_command.md
- Registration/Discovery: registration.md
- Visualization: visualization.md
- Project scaffolding: scaffolding.md
- Howtos: howto.md
- Scoping and multi-file:
- Scoping: scoping.md
- Reference resolving expression language (RREL): rrel.md
- Multi meta-model: multimetamodel.md
- Errors:
- Error handling: error_handling.md
- Debugging: debugging.md
- Generators:
- Jinja generators: jinja.md
- Tutorials:
- Hello World: tutorials/hello_world.md
- Robot: tutorials/robot.md
- Entity: tutorials/entity.md
- State Machine: tutorials/state_machine.md
- Toy language compiler: tutorials/toylanguage.md
- self-dsl: tutorials/self-dsl.md
- Turtle graphics: tutorials/turtle.md
- Development:
- Contributing: https://github.com/textX/textX/blob/master/CONTRIBUTING.md
- Release process: process.md
- About:
- Comparison: about/comparison.md
- License: https://github.com/textX/textX/blob/master/LICENSE.txt
- What's new:
- Release 1.5: whatsnew/release_1_5.md
markdown_extensions:
- admonition:
- toc:
permalink: true
plugins:
- mike
- search
copyright: Copyright © <a href="http://www.igordejanovic.net/">Igor Dejanović</a>.