Mode 2 target XML file : Elements with Attributes Values

csv2xml -v -s:example.csv -t:mode2.xml -m:2 -dtd:./extend/mode2-dtd.dtd

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