From ef6a0f9552f96e788a708309c21b26cace9aa73a Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 9 Feb 2026 22:00:39 -0500 Subject: [PATCH] Update README and CHANGELOG overview features list --- README.md | 2 ++ doc/user_guide.md | 1 + 2 files changed, 3 insertions(+) diff --git a/README.md b/README.md index c2c92a8..790c511 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ Propane is a LALR Parser Generator (LPG) which: * generates a table-driven shift/reduce parser to parse input in linear time * targets C, C++, or D language outputs * optionally supports automatic full parse tree generation + * supports starting parsing from multiple start rules + * tracks input text start and end positions for all matched tokens/rules * is MIT-licensed * is distributable as a standalone Ruby script diff --git a/doc/user_guide.md b/doc/user_guide.md index 7cb5e30..7c897d6 100644 --- a/doc/user_guide.md +++ b/doc/user_guide.md @@ -15,6 +15,7 @@ Propane is a LALR Parser Generator (LPG) which: * generates a table-driven shift/reduce parser to parse input in linear time * targets C, C++, or D language outputs * optionally supports automatic full parse tree generation + * supports starting parsing from multiple start rules * tracks input text start and end positions for all matched tokens/rules * is MIT-licensed * is distributable as a standalone Ruby script