“格式文件”副本Visual Studio 中的函数?

发布于 2024-08-07 17:25:08 字数 433 浏览 4 评论 0原文

我正在寻找一个可以执行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画离情绘悲伤 2024-08-14 17:25:08

将 NotePad++ 与 Tidy 插件一起使用,

请参阅 此处了解更多信息。

use NotePad++ with Tidy plugin

see here for more informations.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文