Maybe the question is too easy, but what i dont understand is :
I have an XML-Document which contains Elements with Quotes like :
<resource language="de">"Hello World", says
Kenny</resource>
When I transform this Document using a stylesheet with the header
<xsl:output method="xml" encoding="windows-1250">
....
<DESCRIPTION><xsl:value-of
select="/resource[@language='de']"></DESCRIPTION>
the stylesheet replaces all Quotes leaving me with
<DESCRIPTION>"Hello World", says Kenny</DESCRIPTION>
when there should be
<DESCRIPTION>"Hello World", says Kenny</DESCRIPTION>
What am I doing wrong ? Why does the processor replaces those quotes ? Or
are the " allowed in an XML-Document ?
Thanks in advance
Michael veeck
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|