Bestehende Anwendung modularisieren 3
<xsl:template match="cd">
<xsl:apply-templates select="titel | interpret |
preis"/>
...
</xsl:template>
<xsl:template match="titel |
interpret">
<h2><xsl:value-of
select="."/><br/></h2>
</xsl:template>
<xsl:template match="preis">
Preis: DM <xsl:value-of
select="."/><br/>
</xsl:template>
<xsl:template match="preis[. <
20]">
Sonderpreis: DM <xsl:value-of
select="."/><br/>
</xsl:template>