On 27/1/05 6:14 PM, "Henri Sivonen" <[EMAIL PROTECTED]> wrote:
>> try instead this example "I <3 Huckabees"...
>
> That makes no difference, either.
>
> <title type='TEXT>I <3 Huckabees</title>
> <title type='XHTML>I <3 Huckabees</title>
>
> Only type='HTML' is different.
> <title type='HTML>I <lt;3 Huckabees</title>
is that right for XHTML?
after XML decoding, the string data would be "I <3 Huckabees", which if
directly embedded into an XHTML <div> would be broken...
<xhtml>
<head></head>
<body><div>I <3 Huckabees</div></body>
</xhtml>
what am I missing?
e.