From afe83b9db7dae6bd229e7fcc37bfb997ebb66f46 Mon Sep 17 00:00:00 2001 From: Jorge Luis Martinez Gomez Date: Tue, 15 Sep 2020 00:40:46 -0700 Subject: [PATCH] update TOC --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 82c48ff..e30fbbc 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,13 @@ Parser combinator library for Ruby, based on Haskell's Parsec. - [Introduction](#introduction) - [`Parsby.new`](#parsbynew) - [Defining combinators](#defining-combinators) + - [Defining parsers as modules](#defining-parsers-as-modules) - [`ExpectationFailed`](#expectationfailed) - [Cleaning up the parse tree for the trace](#cleaning-up-the-parse-tree-for-the-trace) - [`splicer.start` combinator](#splicerstart-combinator) - [Parsing from a string, a file, a pipe, a socket, ...](#parsing-from-a-string-a-file-a-pipe-a-socket-) + - [Recursive parsers with `lazy`](#recursive-parsers-with-lazy) + - [Parsing left-recursive languages with `reduce` combinator](#parsing-leftrecursive-languages-with-reduce-combinator) - [Comparing with Haskell's Parsec](#comparing-with-haskells-parsec) - [Development](#development)