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.)
2 . I have some paragraphs like this (copy/paste from an other app) :
After Beautify, I was expecting something like :
But I got only this :
Same thing for h1, etc.
3. Last thing :
If the closing tag for a HTML comment is at the very beginning of a line, the code after this closing tag loses the syntax highlighting. It seems that at least a space is needed at the beginning of the line to avoid this behavior.