<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template><xsl:apply-templates/></xsl:template>
<xsl:template match="textnode()"><xsl:value-of/></xsl:template>

<xsl:template match="/">

<html>
<body>
<xsl:for-each match="test">
	<p><b>
		<xsl:apply-templates/>
	</b></p>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
