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({
<pre><code class="language-javascript">{ <pre><code class="language-javascript">{
delimiter: "", // auto-detect delimiter: "", // auto-detect
newline: "", // auto-detect newline: "", // auto-detect
quoteChar: '"',
header: false, header: false,
dynamicTyping: false, dynamicTyping: false,
preview: 0, preview: 0,
@ -380,6 +381,13 @@ var csv = Papa.unparse({
<td> <td>
The newline sequence. Leave blank to auto-detect. Must be one of \r, \n, or \r\n. The newline sequence. Leave blank to auto-detect. Must be one of \r, \n, or \r\n.
</td> </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>
<tr> <tr>
<td> <td>

Loading…
Cancel
Save