This, however, renders to  " ".  This may be an elementtree
problem, but I thought some folks here might have run into this
problem.

Elementtree does not handle HTML named entities (  is not part of standard XML). You can insert the 0xa0 char directly, or you can probably use something like:

from elementtree import ElementTree as ET
elem = ET.XML('<span>&#160;</span>')

-- Christoph


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
kid-template-discuss mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/kid-template-discuss

Reply via email to