From f13f1dd45ee954e9d9126ae3f398891b599b01f5 Mon Sep 17 00:00:00 2001
From: Jedidiah Barber Git repository: LinkPackrat Parser Combinator Library
-Paper this was based on: Link
However they also inherit the drawbacks of recursive descent parsing, and in particular recursive descent parsing with backtracking. If the grammar that the parser is designed to accept contains @@ -90,8 +92,10 @@ provide a good general impression.
More thorough documentation is provided in the /doc directory.
-The name of the library comes from packrat parsing which is a parsing algorithm that avoids exponential time complexity by memoizing all intermediate results. As that is what this library does, both so as to reduce the time complexity -and to enable piecewise parsing, the name seemed appropriate.
+The name of the library comes from packrat parsing which is a parsing algorithm that avoids exponential time +complexity by memoizing all intermediate results. As that is what this library does, both so as to +reduce the time complexity and to enable piecewise parsing, the name seemed appropriate.