Enter a simple table with empty cells into the html editor:

<table>
<tr>
<td></td>
<td></td>
</tr>
</table>

click on the HTML tool in the tool bar. Don't edit anything, but click Update.

Click on the HTML tool again. Some neat new markup gets inserted!

<table border="0"><br />
<tr><br />
<td></td><br />
<td></td><br />
</tr><br />
</table>

Now save the page, and come back and edit it. Click on the HTML tool again. Even more good stuff!

<table border="0">
<tr>
<td>&amp;nbsp;</td>
<td>&amp;nbsp;</td>
</tr>
</table>

Should I just assume table markup doesn't work in the editor?

Rod

_______________________________________________
wp-testers mailing list
[email protected]
http://lists.automattic.com/mailman/listinfo/wp-testers

Reply via email to