Fix broken .md links in tutorial index page

This commit is contained in:
Tanuj 2020-01-20 10:42:24 +00:00 committed by Dylan DPC
parent 2951c6b78b
commit 40e1c57dad

View File

@ -3,14 +3,14 @@ This is a tutorial for how to write a complete parser for a simple calculator us
If you are unfamiliar with what a parser generator is, you should read [Crash course on parsers]
first.
- [Adding LALRPOP to your project](001_adding_lalrpop.md)
- [Parsing parenthesized numbers](002_paren_numbers.md)
- [Type inference](003_type_inference.md)
- [Handling full expressions](004_full_expressions.md)
- [Building ASTs](005_building_asts.md)
- [Macros](006_macros.md)
- [Error recovery](007_error_recovery.md)
- [Passing state parameter](008_state_parameter.md)
- [Adding LALRPOP to your project](001_adding_lalrpop.html)
- [Parsing parenthesized numbers](002_paren_numbers.html)
- [Type inference](003_type_inference.html)
- [Handling full expressions](004_full_expressions.html)
- [Building ASTs](005_building_asts.html)
- [Macros](006_macros.html)
- [Error recovery](007_error_recovery.html)
- [Passing state parameter](008_state_parameter.html)
This tutorial is still incomplete. Here are some topics that I aim to
cover when I get time to write about them: