Browse Source

Docs: Fix links to tools

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.11.3
Erez Sh 3 years ago
parent
commit
c403d1dbae
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      README.md
  2. +2
    -2
      docs/features.md

+ 2
- 2
README.md View File

@@ -94,14 +94,14 @@ Lark is great at handling ambiguity. Here is the result of parsing the phrase "f
- Full support for ambiguous grammars
- **LALR(1)** parser
- Fast and light, competitive with PLY
- Can generate a stand-alone parser
- Can generate a stand-alone parser ([read more](docs/tools.md#stand-alone-parser))
- **CYK** parser, for highly ambiguous grammars
- **EBNF** grammar
- **Unicode** fully supported
- **Python 2 & 3** compatible
- Automatic line & column tracking
- Standard library of terminals (strings, numbers, names, etc.)
- Import grammars from Nearley.js ([read more](/docs/nearley.md))
- Import grammars from Nearley.js ([read more](/docs/tools.md#importing-grammars-from-nearleyjs))
- Extensive test suite [![codecov](https://codecov.io/gh/erezsh/lark/branch/master/graph/badge.svg)](https://codecov.io/gh/erezsh/lark)
- MyPy support using type stubs
- And much more!


+ 2
- 2
docs/features.md View File

@@ -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 generator - create a small independent parser to embed in your project. ([read more](tools.md#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))
- Import grammars from Nearley.js ([read more](tools.md#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))



Loading…
Cancel
Save