From 546edbecf85696330e94c3078675a6c6e9865f11 Mon Sep 17 00:00:00 2001 From: Sergi Almacellas Abellana Date: Wed, 1 Feb 2017 09:25:59 +0100 Subject: [PATCH] Include quoteChar on parse configuration docs --- docs.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs.html b/docs.html index 624e263..82f8dd8 100644 --- a/docs.html +++ b/docs.html @@ -336,6 +336,7 @@ var csv = Papa.unparse({
{
 	delimiter: "",	// auto-detect
 	newline: "",	// auto-detect
+	quoteChar: '"',
 	header: false,
 	dynamicTyping: false,
 	preview: 0,
@@ -380,6 +381,13 @@ var csv = Papa.unparse({
 								
 									The newline sequence. Leave blank to auto-detect. Must be one of \r, \n, or \r\n.
 								
+							
+								
+									quoteChar
+								
+								
+									The character used to quote fields. The quoting of all fields is not mandatory. Any field which is not quoted will correctly read.
+