Browse Source

Include quoteChar on parse configuration docs

pull/406/head
Sergi Almacellas Abellana 8 years ago
parent
commit
546edbecf8
  1. 8
      docs.html

8
docs.html

@ -336,6 +336,7 @@ var csv = Papa.unparse({ @@ -336,6 +336,7 @@ var csv = Papa.unparse({
<pre><code class="language-javascript">{
delimiter: "", // auto-detect
newline: "", // auto-detect
quoteChar: '"',
header: false,
dynamicTyping: false,
preview: 0,
@ -380,6 +381,13 @@ var csv = Papa.unparse({ @@ -380,6 +381,13 @@ var csv = Papa.unparse({
<td>
The newline sequence. Leave blank to auto-detect. Must be one of \r, \n, or \r\n.
</td>
</tr>
<td>
<code>quoteChar</code>
</td>
<td>
The character used to quote fields. The quoting of all fields is not mandatory. Any field which is not quoted will correctly read.
</td>
</tr>
<tr>
<td>

Loading…
Cancel
Save