You can see from the subject what I'm trying to do. I'm trying to use
Builder to put an entity in a table cell with:
td = Builder.node('td', ' ');
But the entity gets escaped and I see the ampersand et cetera...
inside the table on the web page.
What's the way to do this?
Another Fred
on 10.07.2008 22:41
on 10.07.2008 22:52
on 10.07.2008 23:09
Nice example. I've seen it -- it doesn't use entities. The problem is not in getting plain text in there. The problem is in getting a real entity in the cell. The entity is being escaped. On the web page I actually see ' ', want to see a blank. Another Fred