I've just noticed that tidy_repair_string()
is removing my non-breaking spaces from empty elements causing my table to collapse. Basically I've put in:
<td> </td>
and HTML Tidy is stripping them out to:
<td> </td>
which may or may not be some Unicode break but either way it's collapsing. The only
related option I've seen is 'quote-nbsp' but that doesn't seem to be it. I think it defaults to on anyway.
How do I keep my non-breaking spaces?