Hi all,
I am renaming the element in my XML using a XSLT document:
Code:
<xsl:template match="intermediateRootName">
<newTagName>
<xsl:apply-templates/>
</newTagName>
</xsl:template>
Is it possible to replace the new tags (newTagName) with any value, as I wanted to replace it with 5 lines of XML import tags?
Is this valid, to have XML content in this style?
Thanks,