changeset 80:901b2bafad36 draft

Adjust markdown syntax in README
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 25 May 2019 23:48:03 +0200
parents 5aaab0037358
children 40f9e05d8f06
files README.md
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/README.md	Sat May 25 23:47:51 2019 +0200
+++ b/README.md	Sat May 25 23:48:03 2019 +0200
@@ -6,13 +6,13 @@
 always been fascinated by them, so I wanted to try if I can implement them :-)
 
 There are examples in the form of
-* a JSON parser in `pcombinators/tests/json.py` and
- * test it with `parse_json('{"ob": "ject"}')` or `Value().parse(ParseFileState('test.json'))`.
- * It does not accept whitespace except in strings. `parse_json()` takes care
- of this in a simple way, but keep this in mind when trying to parse your own
- input.
-* a parser for arithmetic expressions in `pcombinators/tests/arith.py`
-* a parser for CSV files in `pcombinators/tests/csv.py`
+*  a JSON parser in `pcombinators/tests/json.py` and
+    * test it with `parse_json('{"ob": "ject"}')` or `Value().parse(ParseFileState('test.json'))`.
+    * It does not accept whitespace except in strings. `parse_json()` takes care
+    of this in a simple way, but keep this in mind when trying to parse your own
+    input.
+*  a parser for arithmetic expressions in `pcombinators/tests/arith.py`
+*   a parser for CSV files in `pcombinators/tests/csv.py`
 
 TODO: Formal documentation (although every parser is already documented now)