From 958e6cfb1c26293ca6e44413c68b7c0d66c192bd Mon Sep 17 00:00:00 2001 From: Erez Sh Date: Wed, 28 Apr 2021 10:10:29 -0500 Subject: [PATCH] Docs: Fix links to tools --- docs/features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features.md b/docs/features.md index e97cb23..e7788ef 100644 --- a/docs/features.md +++ b/docs/features.md @@ -7,7 +7,7 @@ - Implements a parse-aware lexer that provides a better power of expression than traditional LALR implementations (such as ply). - EBNF-inspired grammar, with extra features (See: [Grammar Reference](grammar.md)) - Builds a parse-tree (AST) automagically based on the grammar - - Stand-alone parser generator - create a small independent parser to embed in your project. ([read more](tools.md#stand-alone-parser)) + - Stand-alone parser generator - create a small independent parser to embed in your project. ([read more](tools.html#stand-alone-parser)) - Flexible error handling by using an interactive parser interface (LALR only) - Automatic line & column tracking (for both tokens and matched rules) - Automatic terminal collision resolution @@ -24,7 +24,7 @@ - Import rules and tokens from other Lark grammars, for code reuse and modularity. - Support for external regex module ([see here](classes.html#using-unicode-character-classes-with-regex)) - - Import grammars from Nearley.js ([read more](tools.md#importing-grammars-from-nearleyjs)) + - Import grammars from Nearley.js ([read more](tools.html#importing-grammars-from-nearleyjs)) - CYK parser - Visualize your parse trees as dot or png files ([see_example](https://github.com/lark-parser/lark/blob/master/examples/fruitflies.py))