“格式文件”副本Visual Studio 中的函数?
我正在寻找一个可以执行 Visual Studio 中“格式化文档”功能的应用程序。一些非常愚蠢的东西(甚至可能是普通文本编辑器的附加组件)基本上会将这个:变成
<div><table><tr><td><?php echo 'earth'; ?></td></tr></table></div>
这样:
<div>
<table>
<tr>
<td>
<?php echo 'earth'; ?>
</td>
</tr>
</table>
</div>
I am looking 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 NotePad++ 与 Tidy 插件一起使用,
请参阅 此处了解更多信息。
use NotePad++ with Tidy plugin
see here for more informations.