Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions csv2json/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ <h4>Row-level processing</h4>
<code>""</code>).</p>
</li>
<li>
<p>The value of <em>name</em> SHALL be <code>#col=<em>[N]</em></code>
<p>The value of <em>name</em> SHALL be <code>_col=<em>[N]</em></code>
where <code><em>[N]</em></code> is the
<a href="http://www.w3.org/TR/tabular-data-model/#dfn-column-number">column number</a>,
whilst the value of <em>value</em> SHALL be provided by the associated
Expand Down Expand Up @@ -390,23 +390,23 @@ <h3>Examples</h3>
"downloadURL": "http://example.org/people-and-points.csv"
},
"row": [{
"#col=1": "1",
"#col=2": "Jill",
"#col=3": "Smith",
"#col=4": "50"
"_col=1": "1",
"_col=2": "Jill",
"_col=3": "Smith",
"_col=4": "50"
},{
"#col=1": "2",
"#col=2": "Eve",
"#col=4": "94"
"_col=1": "2",
"_col=2": "Eve",
"_col=4": "94"
},{
"#col=1": "3",
"#col=2": "Adam",
"#col=3": "Johnson"
"_col=1": "3",
"_col=2": "Adam",
"_col=3": "Johnson"
},{
"#col=1": "4",
"#col=2": "John",
"#col=3": "Doe",
"#col=4": "80"
"_col=1": "4",
"_col=2": "John",
"_col=3": "Doe",
"_col=4": "80"
}]
}
</pre>
Expand Down Expand Up @@ -511,7 +511,7 @@ <h4>Table-level processing</h4>
within the <a title="column description object">column description object</a> for
that <a href="http://www.w3.org/TR/tabular-data-model/#dfn-column">column</a>.</p>
<p>Where the column header is <em>null</em>, the value assigned to <code>name</code> SHALL be
<code>#col=<em>[N]</em></code> where <code><em>[N]</em></code> is the
<code>_col=<em>[N]</em></code> where <code><em>[N]</em></code> is the
<a href="http://www.w3.org/TR/tabular-data-model/#dfn-column-number">column number</a>.</p>
</li>
<li>
Expand Down
Loading