This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

outputting a xml file with accentued characters to html


Hello,

here's my (simplified) problem:

let's say I have a xml file which looks like this:

<QUIZZ>
<BP DEPLOK="4">
<ENONCE>Le soma est le site de synthèse des constituants
 du neurone</ENONCE>
</BP>
<BP>
</QUIZZ>

(there is a é character in it)

and a stylesheet file
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
        <html>
        <body>
                <xsl:for-each select="//BP">
                        <xsl:value-of select="."/>
                </xsl:for-each>
        </body>
        </html>
</xsl:template>
</xsl:stylesheet>

when I process it using xalan I get this:

<html><head><title>Mopsys</title></head><body>
Le soma est le site de synthÞ¦Ñ des constituants
 du neurone
</body></html>

My question is : what must I do to have the é character in a correct way
: &eacute; ?

Thanks

-- 
Gilles Durys
Gilles.Durys@nefy.ucl.ac.be


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]