<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output
method="html"
encoding="ISO-8859-1"
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"
indent="yes" />

<xsl:template match="macompile">
<html><body>
<table border="1" cellspacing="0" cellpadding="3">
<tr bgcolor="#ffffcc">
<td>Titre</td>
<td>Artiste</td>
</tr>
<xsl:apply-templates />
</table>
</body></html>
</xsl:template>

<xsl:template match="mp3">
<tr><xsl:apply-templates /></tr>
</xsl:template>

<xsl:template match="titre">
<td><xsl:value-of select="."/></td>
</xsl:template>

<xsl:template match="artiste">
<td><xsl:value-of select="."/></td>
</xsl:template>

</xsl:stylesheet>
