Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagenone
titleexamples/csv/csv_test.csv
linenumberstrue
last,first,middle,DOB
baratheonsmith,robert,brandon,1988-03-24
johnson,john,henry,1986-01-23
starkjones,arya,cat,1986-02-19
Code Block
languagehtml/xml
titleoutput
linenumberstrue
<ex:file xmlns:ex="http://example.com">
  <ex:header>
    <ex:title>last</ex:title>
    <ex:title>first</ex:title>
    <ex:title>middle</ex:title>
    <ex:title>DOB</ex:title>
  </ex:header>
  <ex:record>
    <ex:item>baratheon<item>smith</ex:item>
    <ex:item>robert</ex:item>
    <ex:item>brandon</ex:item>
    <ex:item>1988-03-24</ex:item>
  </ex:record>
  <ex:record>
    <ex:item>johnson</ex:item>
    <ex:item>john</ex:item>
    <ex:item>henry</ex:item>
    <ex:item>1986-01-23</ex:item>
  </ex:record>
  <ex:record>
    <ex:item>stark<item>jones</ex:item>
    <ex:item>arya</ex:item>
    <ex:item>cat</ex:item>
    <ex:item>1986-02-19</ex:item>
  </ex:record>
</ex:file>