I'm new to Marklogic XSLT transformations and I have the below questions.
What XSLT engine does Marklogic use to transform document using xdmp:xslt-invoke()
function?Is there a way that we can support XSLT 3.0 version in Marklogic?
I'm trying to use XSLT 3.0 version that has the below variable for transformation
<xsl:variable name="format-map" as="map(xs:string,xs:string)">
and I'm getting below error when using xdmp:xslt-invoke() function in Marklogic
XSLT-BADSEQTYPE: (err:XTSE0020) /*:stylesheet/*:variable[1] -- Invalid sequence type: /*:stylesheet/*:variable[1]/@as (XDMP-UNEXPECTED: (err:XPST0003) Unexpected token syntax error, unexpected Lpar_, expecting $end)
Please let me know how to resolve this