1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-07 10:42:55 +03:00
Files
libxslt/tests/REC/article.xsl
2001-02-08 11:24:19 +00:00

12 lines
313 B
XML

<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>