Add first rules with experimental example format

This commit is contained in:
2015-04-01 20:27:27 +01:00
parent 02a4bcbaa6
commit 29459df76f

View File

@@ -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. 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 ## License