Reputation: 2049
What is the XSL version supported by Xalan 1.8 library ?
Upvotes: 0
Views: 119
Reputation: 12075
Just in case it changes in the future: generally, you can ask any XSLT processor to report on the version it supports with:
<xsl:value-of select="system-property('xsl:version')" />
Upvotes: 0
Reputation: 243459
What is the XSL version supported by Xalan 1.8 library ?
1.0
Upvotes: 1
Reputation: 52848
The XSLT version that is supported by all versions of Xalan is XSLT 1.0.
Upvotes: 2