blob: 6276f6e4f6b4d894e97ec769569c9cd5ac096d18 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<xsl:apply-templates/>
</html>
</xsl:template>
<xsl:template match="Review">
<body>
<xsl:apply-templates select="//About"/>
</body>
</xsl:template>
<xsl:template match="About">
<xsl:for-each select="Text">
<Br>
<li>
<font size="4" color="Blue">
<xsl:value-of select="."/>
</font>
</li>
</Br>
<xsl:apply-templates/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>