cRODEEkrank
Technical User
I have the following XSL stylesheet:
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl=" <xsl
utput method="xml" omit-xml-declaration="yes" doctype-system="NimsNamePayload.dtd" doctype-public="NimsNamePayload.dtd" />
<xsl:template match="CDATA">
<xsl:text disable-output-escaping="yes"/>
</xsl:template>
</xsl:stylesheet>
The expected result of this is to display a <!DOCTYPE in the resulting output file and also to display the "<" and ">" and not the entities < &rt;. However, after doing a transformation, there's no "<!DOCTYPE" and the angle brackets are all entities. Can someone help find out what's wrong?
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl=" <xsl
<xsl:template match="CDATA">
<xsl:text disable-output-escaping="yes"/>
</xsl:template>
</xsl:stylesheet>
The expected result of this is to display a <!DOCTYPE in the resulting output file and also to display the "<" and ">" and not the entities < &rt;. However, after doing a transformation, there's no "<!DOCTYPE" and the angle brackets are all entities. Can someone help find out what's wrong?