mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
- imports.c transform.c xslt.c xsltInternals.h: fixed a strip-spaces problem - tests/docs/*.xml tests/general/*.[xsl,out]: added reported bugs to testsuite Daniel
22 lines
443 B
XML
22 lines
443 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:template match="foo">
|
|
<FOO>
|
|
<xsl:apply-templates/>
|
|
</FOO>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="bar">
|
|
<BAR>
|
|
<xsl:value-of select="."/>
|
|
</BAR>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="xxx">
|
|
<XXX>
|
|
<xsl:value-of select="."/>
|
|
</XXX>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|