Re: entity euro hurts
Mark Holland <mark-rHpctHB9Aj9Wk0Htik3J/w==@public.gmane.org>
2004-04-18 23:41:08 GMT
Michele Beltrame wrote:
>>I am using 2.05 I have got to work by using
>> input => 'HTML',
>> output => 'HTML',
>>but if I use € or € it turns to  Â, while € turns to
>>â???¬.
>>
>>
>
>I have the same problem, that's why I have to avoid using "€" for
>now.
>
>I'm just using output => 'XHTML' and leave the rest as per default.
>" " works until I insert an "€", after which no entity
>seems to work anymore until I remove it.
>
>
Try making sure all your output is unicode and that your browser is
aware of this by setting your http content-type header to:
Content-type: text/html; charset=utf-8
and adding the following meta tag to your html (as some browsers don't
honour/recognise the charset portion of the content-type header)
<meta http-equiv="content-type" content="text/html" charset=utf-8"/>
I tried the € entity on my system with this set up and it produces
the character with no problems.
(Continue reading)