Home

Last modified by Nicolas Gregoire on 2012/01/14 23:41

Main links

You are probably looking for the XSLT space. Here's some direct links to the Engines and Applications pages.

Tags

Unknown macro: tagcloud. Click on this message for details.

XSLT 101

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="/">
Version : <xsl:value-of select="system-property('xsl:version')" />
Vendor : <xsl:value-of select="system-property('xsl:vendor')" />
Vendor URL : <xsl:value-of select="system-property('xsl:vendor-url')" />
</xsl:template>
</xsl:stylesheet>