Quote:
Originally Posted by Bertrand
Nothing really serious, just some curious behaviors.
1. I create a table like this, before entering data, with empty cells :
Before :
Code:
<table>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
and click Beautify
After :
Code:
<table>
<tr>
<td/>
<td/>
<td/>
<td/>
</tr>
</table>
See TD tags ? This is not valid HTML.
(No big deal, putting a temporary space inside empty cells solved the problem.)
|
Yes it IS valid XHTML (although a bit unusual). The trailing /> means that no closing tag is needed.