Hi,
Is it possible to pass a param with a type element() to an attribute of an xsl instruction?
for example:
Code:
<xsl:function name="f:getFigNum">
<xsl:param name="parent" as="element()"/>
<xsl:number level="any" count="//figure" from="{$parent}"/>
</xsl:function>
This gives me an Unexpected token in XMLspy -
Thanks,