You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xalan.apache.org by Ben Rooney <sp...@hotmail.com> on 2002/04/22 12:45:12 UTC

xml/xsl with international characters

hi, i'm trying to create an application that will take an xml document
containing html escaped international characters (ie &aacute;) and transform
it to html.  however, i get an error message about the escaped characters.
does anybody have an idea how to get around this issue.

thanks
ben



_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


Re: xml/xsl with international characters

Posted by Jens Lautenbacher <jt...@schlund.de>.
On Mon, 2002-04-22 at 12:45, Ben Rooney wrote:
> hi, i'm trying to create an application that will take an xml document
> containing html escaped international characters (ie &aacute;) and transform
> it to html.  however, i get an error message about the escaped characters.
> does anybody have an idea how to get around this issue.

The two things "xml document" and "html escaped characters" are a
contradiction :-)

XML doesn't know about &aacute; and the likes. You could use a DTD that
defines these to their corresponding numerical character entities (those
of the form '&#160;' which is &nbsp; in html-speak.)

	jtl