summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-10 15:21:31 +0100
committerIgnace Nyamagana Butera <nyamsprod@gmail.com>2015-02-10 15:22:05 +0100
commit06d0d3b598ae2b2510a6fd206ebe9de86377b92e (patch)
tree695b3f6c5e57e304c6f0dfa1d8d41eb8a9280a82
parent77855edcb02fd97cc52b6a5b67faa66ddeac6da2 (diff)
downloadcsv-06d0d3b598ae2b2510a6fd206ebe9de86377b92e.zip
csv-06d0d3b598ae2b2510a6fd206ebe9de86377b92e.tar.gz
csv-06d0d3b598ae2b2510a6fd206ebe9de86377b92e.tar.bz2
update readme tips
-rw-r--r--README.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0dc1451..a9ede27 100644
--- a/README.md
+++ b/README.md
@@ -54,9 +54,12 @@ Documentation
* Even though you can iterate over you document using `League\Csv\Writer` class, **it is recommend and best practice** to iterate over you CSV using the `League\Csv\Reader` class to avoid any issue.
-* The library assumes that your data is UTF-8 encoded. If your are dealing with non-unicode data you **must** enable your data conversion into UTF-8 otherwise output methods will fail. You can transcode your CSV :
- * using the library [stream filtering methods](http://csv.thephpleague.com/filtering);
- * or by setting the source [encoding charset](http://csv.thephpleague.com/overview);
+* The library assumes that your data is `UTF-8` encoded. If your are dealing with non-unicode data you **must** enable your data conversion into UTF-8 otherwise conversion methods will fail.
+
+You can transcode your CSV :
+
+* using the library [stream filtering methods](http://csv.thephpleague.com/filtering) will affect conversion and outputting;
+* or by setting the source [encoding charset](http://csv.thephpleague.com/overview) will **only** affect conversion;
Testing
-------