summaryrefslogtreecommitdiffstats
path: root/libxslt/tests/REC/article.xsl
blob: 302652a7607f4bd372ed51f50efd741880b35b6d (plain)
1
2
3
4
5
6
7
8
9
10
11
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="article">
<h3><xsl:value-of select="title"/></h3>
<xsl:apply-templates select="para"/>
</xsl:template>
<xsl:template match="para">
<p><xsl:apply-templates/>
</p>
</xsl:template>
</xsl:stylesheet>