forked from textX/textX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
42 lines (36 loc) · 1.16 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
site_name: textX
site_description: A meta-language for building Domain-Specific Languages (DSLs)
site_author: Igor Dejanović
repo_url: https://github.com/igordejanovic/textX
google_analytics: ['UA-68681917-1', 'igordejanovic.net']
theme: readthedocs
extra_css: ['style.css']
pages:
- Home: index.md
- User Guide:
- Grammar: grammar.md
- Meta-model: metamodel.md
- Model: model.md
- Parser configuration: parser_config.md
- Visualization: visualization.md
- Error handling: error_handling.md
- Debugging: debugging.md
- textx command: textx_command.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
- About:
- Comparison: about/comparison.md
- Discuss: about/discuss.md
- Contributing: about/contributing.md
- License: about/license.md
- What's new:
- Release 1.5: whatsnew/release_1_5.md
markdown_extensions:
- admonition:
- toc:
permalink: True
copyright: Copyright © 2016 <a href="http://igordejanovic.net/">Igor Dejanović</a>.