> Hi,
> My problem is that when I convert one XML to another using XSLT, the quotes( " ) in the original XML gets converted into actual quotes ( " ) in the new XML file. But I would like to retain it in the new XML. Is there any way we can do that ?
> Thanks,
> Prashant.
this is well-defined behavior. check the options available for your xslt
engine and learn more about the tag <xsl:output>. also, c/o comp.text.xml.
FYI, this is what I used to get around this problem (the the specifics elude
me, but note that i'm using the xsltproc from libxslt; YMMV):
...
<xsl:output method="html" encoding="US-ASCII" standalone="no" indent="yes"/>
...
Bill