xmltools icon indicating copy to clipboard operation
xmltools copied to clipboard

Xsl fails schema on included template call

Open nkeating-mutualofenumclaw opened this issue 5 years ago • 0 comments

In the latest version (this worked in Xml Tools V2) running an xsl which includes another xsl then calls a template fails schema validation for the xsl.

Scenario: Create xsl with: <xsl:template name="FormatData">test</xsl:template>

Include that file in the primary xsl and call the template: ` <xsl:include href="formdata.xsl"/>

<xsl:call-template name="FormatData"></xsl:call-template> `