Copy of "Format Document" function in Visual Studio?
I am lookin开发者_运维问答g for an app that can do what the "Format Document" function does in Visual Studio. Something really stupid (maybe even an add-on to a normal text editor) that will basically turn this:
<div><table><tr><td><?php echo 'earth'; ?></td></tr></table></div>
into this:
<div>
<table>
<tr>
<td>
<?php echo 'earth'; ?>
</td>
</tr>
</table>
</div>
use NotePad++ with Tidy plugin
see here for more informations.
精彩评论