1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/REC/test-7.7-2.xsl
Bjorn Reese 5922af82da implemented level=any
corrected some default values
added tests
2001-02-14 18:20:30 +00:00

13 lines
288 B
XML

<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="ol/item">
<fo:block>
<xsl:number/><xsl:text>. </xsl:text><xsl:apply-templates/>
</fo:block>
</xsl:template>
</xsl:stylesheet>