Mode 1 target XML file : Elements with Element Content (default)

csv2xml -v -s:example.csv -t:mode1.xml -m:1 -xsl:./extend/mode1-stylesheet.xsl

[ Mode 1 with XSL Stylesheet embedding... ]
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="./extend/mode1-stylesheet.xsl" ?>
<csv_data_records source="example.csv">
     <record num="1">
          <Name>Clooney</Name>
          <Firstname>George</Firstname>
          <Address>AnyStreet 1</Address>
          <City></City>
          <Country>USA</Country>
          <Tel>+01/23451/89876</Tel>
          <Properties></Properties>
          <Email>George.Clooney@emergency.room</Email>
     </record>
     <record num="2">
          <Name>Graham</Name>
          <Firstname>Heather</Firstname>
          <Address></Address>
          <City></City>
          <Country></Country>
          <Tel></Tel>
          <Properties></Properties>
          <Email></Email>
     </record>
     <record num="3">
          <Name>Picard</Name>
          <Firstname>Jean-Luc</Firstname>
          <Address>Room next to the bridge of the USS Enterprise</Address>
          <City></City>
          <Country></Country>
          <Tel></Tel>
          <Properties>He's the Captain 
of the USS Enterprise !!!</Properties>
          <Email>Jean-Luc.Picard@enterprise.uss</Email>
     </record>
</csv_data_records>
<!-- 3 records written -->