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]

RE: Iacute


So the question was how to *generate* that with XSLT?

Try:

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

<xsl:output encoding="us-ascii" />

<xsl:template match="/">
<html>
	<head>
		<title>&#205;&#237;</title>
	</head>
	<body>
		<p>&#205;&#237;</p>
	</body>
</html>
</xsl:template>

</xsl:transform>

In theory, specifying the output encoding shouldn't be necessary. The
default is Unicode, and if your system is working properly (what environment
do you use), the browser should get enough information to display the data
properly.



> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Carlos Durand
> Silvestrin
> Sent: Monday, July 23, 2001 10:11 PM
> To: xsl-list@lists.mulberrytech.com
> Subject: RES: [xsl] Iacute
>
>
> Not directly, but using XSLT
>
> > -----Mensagem original-----
> > De: owner-xsl-list@lists.mulberrytech.com
> > [mailto:owner-xsl-list@lists.mulberrytech.com]Em nome de Julian Reschke
> > Enviada em: segunda-feira, 23 de julho de 2001 16:19
> > Para: xsl-list@lists.mulberrytech.com
> > Assunto: RE: [xsl] Iacute
> >
> >
> > On my system (IE),
> >
> > <html>
> > 	<head>
> >   	<title>&#205;&#237;</title>
> >    </head>
> >    <body>
> >    	<p>&#205;&#237;</p>
> >    </body>
> > </html>
> >
> > works just fine (upper and lower case i acute).
> >
> >
> > > -----Original Message-----
> > > From: owner-xsl-list@lists.mulberrytech.com
> > > [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of
> Carlos Durand
> > > Silvestrin
> > > Sent: Monday, July 23, 2001 9:00 PM
> > > To: xsl-list@lists.mulberrytech.com
> > > Subject: [xsl] Iacute
> > >
> > >
> > > I want to display the character "Í" in HTML but it's impossible.
> > > I tried to
> > > use unicode "&#0CD;" it generate on HTML the character "Í" but
> > the browser
> > > doesn't show it, only a strange character.I tried to use
> <![CDATA[Í]]>,
> > > nothing... I tried <![CDATA[&Iacute;]]> but the response is
> > "&pamIacute" I
> > > don't know why. What can I do...
> > >
> > >
> > >
> > >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> > >
> >
> >
> >  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> >
>
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 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]