From 3752fe211a71fbc1fb23e40b253fe1b9a5155a04 Mon Sep 17 00:00:00 2001 From: David Majda Date: Sat, 17 Apr 2010 11:15:49 +0200 Subject: [PATCH] README.md: Added the "Features" section. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 96e25f8..4aae304 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,15 @@ PEG.js: Parser Generator for JavaScript PEG.js is a parser generator for JavaScript based on the [parsing expression grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism. It is designed to be used either from your browser or from the command line (using [Rhino](http://www.mozilla.org/rhino/) JavaScript interpreter). +Features +-------- + + * Usable [from your browser](http://pegjs.majda.cz/online) or [from a command-line](http://pegjs.majda.cz/documentation#generating-a-parser) + * Simple and expressive [grammar syntax](http://pegjs.majda.cz/documentation#grammar) + * No separate lexical analysis step—both lexical and syntactical analysis are handled by one tool + * Handles wide class of grammars (strict superset of LL(k) and LR(k)) + * Precise and human-friendly error reporting + Requirements ------------