summaryrefslogtreecommitdiff
path: root/doc/example_overview.html
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2021-01-19 02:25:44 +1100
committerJed Barber <jjbarber@y7mail.com>2021-01-19 02:25:44 +1100
commitda389927ddf9240bbba10b819eb782e80a5d6bf7 (patch)
tree88b167b892de8c419151ca9a02c16f8d4ed96bec /doc/example_overview.html
parent901c7e61278f16dc5c08cbebf74c2a816cd4b4b6 (diff)
Basic HTML documentation added
Diffstat (limited to 'doc/example_overview.html')
-rw-r--r--doc/example_overview.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/doc/example_overview.html b/doc/example_overview.html
new file mode 100644
index 0000000..88d15a3
--- /dev/null
+++ b/doc/example_overview.html
@@ -0,0 +1,40 @@
+
+<!DOCTYPE html>
+
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>/example Overview - Packrat Docs</title>
+ <link href="default.css" rel="stylesheet">
+ </head>
+
+ <body>
+
+
+ <h2>/example Overview</h2>
+
+ <a href="index.html">Return to Contents</a>
+
+
+ <table>
+ <tr>
+ <td>calc.adb</td>
+ <td>Implements a basic expression calculator using lexer and parser combinators.
+ Can handle <em>+ - * / ^ ()</em> operators. Run with the <em>--help</em> switch for more info.</td>
+ </tr>
+ <tr>
+ <td>sentence.adb</td>
+ <td>Implements the sentence grammar used as an example in the reference paper on pages 2-3.</td>
+ </tr>
+ <tr>
+ <td>ssss.adb</td>
+ <td>Implements the highly ambiguous <em>s</em> grammar used in the reference paper on pages 5 and 12-13.
+ Length of input can be adjusted by command line argument and is therefore good for experiments on
+ complexity of the library. Also responds to the <em>--help</em> switch.</td>
+ </tr>
+ </table>
+
+
+ </body>
+</html>
+