hi, I have a problem, I've got a xml file that contains HTML TAGS. I want show this data like HTML without any XML filter. I'm using tag copy:
<xsl:template match=" //show//* | //show//text()">
<xsl:copy >
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
But attributes aren't copied, I've tried use TAG copy-of but I can't do it:
<xsl:template match=" //show//* | //show//text()">
<xsl:copy-of >
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
Do you know how to do it? thaks for your support
<xsl:template match=" //show//* | //show//text()">
<xsl:copy >
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
But attributes aren't copied, I've tried use TAG copy-of but I can't do it:
<xsl:template match=" //show//* | //show//text()">
<xsl:copy-of >
<xsl:apply-templates />
</xsl:copy>
</xsl:template>
Do you know how to do it? thaks for your support