-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
26 lines (23 loc) · 817 Bytes
/
mkdocs.yml
File metadata and controls
26 lines (23 loc) · 817 Bytes
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
site_name: FOOL Compiler
site_description: Documentation for the FOOL Compiler – a compiler for a custom language built on the ANTLR framework.
site_url: https://basigli.github.io/FOOL-Compiler/
repo_url: https://github.com/Basigli/FOOL-Compiler
repo_name: Basigli/FOOL-Compiler
theme:
name: readthedocs
markdown_extensions:
- admonition
- toc:
permalink: true
nav:
- Home: index.md
- Getting Started: getting-started.md
- Language Reference:
- Grammar: language/grammar.md
- Language Features: language/features.md
- Architecture:
- Overview: architecture/overview.md
- AST Generation: architecture/ast.md
- Symbol Table: architecture/symbol-table.md
- Type Checking: architecture/type-checking.md
- Code Generation: architecture/code-generation.md