From 29459df76fca3122c6605e296944236f4b1ef38e Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 1 Apr 2015 20:27:27 +0100 Subject: [PATCH] Add first rules with experimental example format --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 8be144c..3829fe7 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,22 @@ character used in any given input CSV-like formatted file/data. examples the `¬` character will be used to visually display line breaks. +## Rules +1. Each record is located on a separate line, each line ending with CRLF + (`\r\n`). For example: + CSV: + + aaa,bbb,ccc¬ + xxx,yyy,zzz¬ + + JSON: + + [ + ["aaa", "bbb", "ccc"], + ["xxx", "yyy", "zzz"] + ] ## License