Skip to content

Commit 443a954

Browse files
committed
Updated README
1 parent d0941ca commit 443a954

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Parse any context-free grammar, FAST and EASY!
44

5-
**Beginners**: Forget everything you knew about parsers. Lark's algorithm can quickly parse any grammar you throw at it, no matter how complicated. It also constructs a parse-tree for you, without additional code on your part.
5+
**Beginners**: Lark is not just another parser. It can parse any grammar you throw at it, no matter how complicated or ambiguous, and do so efficiently. It also constructs a parse-tree for you, without additional code on your part.
66

7-
**Experts**: Lark lets you choose between Earley and LALR(1), to trade-off power and speed. It also contains experimental features such as a contextual-lexer.
7+
**Experts**: Lark lets you choose between Earley and LALR(1), to trade-off power and speed. It also contains a CYK parser and experimental features such as a contextual-lexer.
88

99
Lark can:
1010

@@ -72,6 +72,7 @@ See more [examples in the wiki](https://github.com/erezsh/lark/wiki/Examples)
7272
- **LALR(1)** parser
7373
- Fast and light, competitive with PLY
7474
- Can generate a stand-alone parser
75+
- **CYK** parser, for highly ambiguous grammars (NEW! Courtesy of [ehudt](https://github.com/ehudt))
7576
- **EBNF** grammar
7677
- **Unicode** fully supported
7778
- **Python 2 & 3** compatible

0 commit comments

Comments
 (0)