Is there a tool/web app that will automatically sort out an HTML file in to proper tab structure? For example, from this:
<table><tr><td>Hello Wolrd</td></tr></table>
to this:
<table>
<tr>
<td>Hellow World!</td>
</tr>
</table>
I work with a lot of other peoples code, and I can't stand bad organization in HTML.