Subject: Re: XTSE0020: character attribute must be a single XML character
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Wed, 25 Feb 2009 15:27:20 +0100
|
Ganesh Babu N wrote:
For the below character, I am getting the error message saying that "
XTSE0020: character attribute must be a single XML character"
<xsl:output-character character="Ω;" string="&ohm;"/>
^^^^^^^^^
when I checked in the unicode site for the current the values are
correct. Where I am going wrong.
I guess you want
<xsl:output-character character="Ω" string="&ohm;"/>
without the trailing semicolon.
--
Martin Honnen
http://JavaScript.FAQTs.com/
|