xml - convert HTML entities -


i have xml file:

<?xml version="1.0" encoding="utf-8"?> <field> <id><![cdata[&lt;table style=&quot;width: 700px;&quot; align=&quot;left&quot; border=&quot;0&quot;&gt;&lt;tbody&gt;&lt;]]></id> </field> 

i want convert xml xsl to:

<?xml version="1.0" encoding="utf-8"?> <field> <id><![cdata[<table style="width: 700px;" align="left" border="0"><tbody><]]></id> </field> 

my xsl file is:

<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/xsl/transform">     <xsl:template match="@*|node()">         <xsl:copy>             <xsl:apply-templates select="@*|node()"/>         </xsl:copy>     </xsl:template> </xsl:stylesheet> 

how can convert these tags html tags <>" ? regards.


Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -