Advertisement
Chill3d

Valid XSL

Jul 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2. <xsl:output method="html"/>
  3. <xsl:template match="*">
  4. <h2>Detecting the underlying XSLT engine ...</h2>
  5. <b>Version:</b> <xsl:value-of select="system-property('xsl:version')" /><br/>
  6. <b>Vendor:</b> <xsl:value-of select="system-property('xsl:vendor')" /><br/>
  7. <b>Vendor URL:</b> <xsl:value-of select="system-property('xsl:vendor-url')" /><br/>
  8. </xsl:template>
  9. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement