vote up 0 vote down star

I have an implementation of default handler. When it gets to a   in the character data it stops parsing. Is there any reason that it is doing this? Are there additional properties that I need to set in order for it to deal with &nbsp?

flag
Could you post example XML? – David Norman Nov 12 '08 at 19:42

2 Answers

vote up 1 vote down check

This breaks because the XML entity is not defined. You could add

<!DOCTYPE document  SYSTEM "document.dtd" [ 
<!ENTITY nbsp "&#160;"> 
]>

Or just use &#160; instead. (Note the ";" at the end)

Also see here.

link|flag
vote up 0 vote down

&nbsp; is not a valid xml entity. You might try replacing it with &#160; instead, it does the same thing (non-breaking space).

link|flag
It breaks/stops parsing on &#160 as well. – Knoth23 Nov 12 '08 at 21:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.