mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-14 05:09:26 +03:00
- TODO: updated - configure.in tests/Makefile.am tests/REC/*: started adding some regression tests based from fragments of spec examples - libxslt/transform.c: fixed a problem on namespace generation Daniel
11 lines
266 B
XML
11 lines
266 B
XML
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:template match="doc">
|
|
<xsl:apply-templates select=".//div"/>
|
|
</xsl:template>
|
|
<xsl:template match="div">
|
|
<xsl:text>div found </xsl:text>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|