Chandu
Chandu

Reputation: 2049

What is the XSL version supported by xalan 1.8 library

What is the XSL version supported by Xalan 1.8 library ?

Upvotes: 0

Views: 119

Answers (3)

Flynn1179
Flynn1179

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

Dimitre Novatchev
Dimitre Novatchev

Reputation: 243459

What is the XSL version supported by Xalan 1.8 library ?

1.0

Upvotes: 1

Daniel Haley
Daniel Haley

Reputation: 52848

The XSLT version that is supported by all versions of Xalan is XSLT 1.0.

Upvotes: 2

Related Questions