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]
Other format: [Raw text]

RE: [xsl] Re: [xsl] RE: [xsl] Re: [xsl] Re[2]: [xsl] Re: [xsl] RE: [xsl] Re: [xsl]   is being displayed as Á


> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Kevin Burges
> Sent: Wednesday, December 12, 2001 6:43 PM
> To: David Carlisle
> Subject: [xsl] Re: [xsl] RE: [xsl] Re: [xsl] Re[2]: [xsl] Re: [xsl] RE:
> [xsl] Re: [xsl]   is being displayed as Á
>
>
> Hi David,
>
>
> >> I set the endoding (in a Content-Type meta and xsl:output) as UTF-8.
> DC> If you are using the html output method then you shouldn't explictly
> DC> make an meta element, one will be added automatically.
>
> Not in MSXML it isn't. I have no idea whether it should or not so I'll
> take your word for it, but it certainly doesn't happen here. I'm using
> XMPSpy to do the transform, and it is using MSXML4. I believe it did
> the same with MSXML3

I think it only does produce it if you're creating a <HEAD> element.

I used the following minimal code for testing:

<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                version="1.0"
>

<xsl:output encoding="utf-8" method="html"/>

<xsl:template match="/">
<html>
  <head>
  </head>
  <body>
    <p>
      non&#0160;breakable
    </p>
  </body>
</html>
</xsl:template>

</xsl:transform>


 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]