-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
54 lines (53 loc) · 1.79 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
site_name: Abulafia Documentation
theme: material
extra:
palette:
primary: 'Amber'
accent: 'Deep Orange'
feature:
tabs: true
repo_name: 'FrancoisChabot/abulafia'
repo_url: 'https://github.com/FrancoisChabot/abulafia'
markdown_extensions:
- footnotes
- codehilite
pages:
- Home: 'index.md'
- User Guide:
- 'Introduction': 'guide/00_introduction.md'
- 'Installation': 'guide/01_installation.md'
- 'Character Sets': 'guide/07_character_sets.md'
- 'Parsers': 'guide/02_parsers.md'
- 'Skippers': 'guide/03_skippers.md'
- 'Resumable Parsers': 'guide/04_resumable_parsers.md'
- 'Actions': 'guide/05_actions.md'
- 'Recursivity': 'guide/06_recursivity.md'
- 'Working with user types': 'guide/08_working_with_structs.md'
- 'Advanced' :
- 'Writing Parsers' : 'guide/advanced/00_writing_parsers.md'
- Reference:
- 'Quick Reference': 'reference.md'
- 'Data Sources':
- 'Single Forward' : 'data_sources/single_forward.md'
- 'Container Sequence' : 'data_sources/container_sequence.md'
- 'Patterns':
- 'Leaf':
- 'Integer' : 'patterns/leaf/numeric/int.md'
- 'Character' : 'patterns/leaf/character.md'
- 'End-of-input' : 'patterns/leaf/eoi.md'
- 'Fail' : 'patterns/leaf/fail.md'
- 'Literal' : 'patterns/leaf/literal.md'
- 'Pass' : 'patterns/leaf/pass.md'
- 'Symbol' : 'patterns/leaf/Symbol.md'
- 'Unary':
- 'not' : 'patterns/unary/not.md'
- 'repeat' : 'patterns/unary/repeat.md'
- 'Binary':
- 'except' : 'patterns/binary/except.md'
- 'list' : 'patterns/binary/list.md'
- 'Nary':
- 'Alternative' : 'patterns/nary/alternative.md'
- 'Sequence' : 'patterns/nary/sequence.md'
- 'Special':
- 'Recursive' : 'patterns/recur.md'
- 'Semantic Action' : 'patterns/action.md'