Sorry for the noob question, but I'm totally new to xml/xsl.
I've played around with this plug-in and I managed to obtain an xml file where items looks like that:
<Item>
<Field Name="Image File" />
<Field Name="Album">'If 6 Was 9' A Tribute To Jimi Hendrix</Field>
<Field Name="Artist">Thin White Rope</Field>
<Field Name="Date (year)" />
<Field Name="Filename">(0xACEF32D9):\A Tribute To Jimi Hendrix - If\01 - May This Be Love.mp3</Field>
<Field Name="Genre">Rock</Field>
<Field Name="Name">May This Be Love</Field>
<Field Name="Track #">1</Field>
<Field Name="Volume Name">MP3 VOL 106</Field>
</Item>
Now, it looks like this is pretty useless if I want to import the data into another program (it only gets one field for each item). What I need to get in my xml file is something like that:
<Item>
<Cover></Cover>
<Album>'If 6 Was 9' A Tribute To Jimi Hendrix</Album>
<Artist">Thin White Rope</Artist>
<Date></Date>
<Location>(0xACEF32D9):\A Tribute To Jimi Hendrix - If\01 - May This Be Love.mp3</Location>
<Genre>Rock</Genre>
<Name>May This Be Love</Name>
<Track>1</Track>
<Volume>MP3 VOL 106</Volume>
</Item>
What would be the easiest way to go about that? I seem to understand that I need to apply an xsl transformation, that I need to make an xsl file for that, but I don't know where to start.
Sorry again for the beginner question.