如何在 Dreamweaver 中自动组织代码以使其对读者更友好?

发布于 2024-12-14 20:08:08 字数 449 浏览 2 评论 0原文

我使用 Dreamweaver CS5 作为我的代码编辑器,我禁用了许多功能以使其尽可能基本,因为我只需要语法验证和 Dreamweaver 代码配色方案。我找不到自动组织代码的功能,这可能吗?如果是的话你能告诉我如何实现它吗?

例如,将此代码组织

<div id="wrapper">
   <div id="content">
      <p>Content

      </p></div>
  </div>

成这个更干净的版本

<div id="wrapper">
    <div id="content">
        <p>Content</p>
    </div>
</div>

I'm using Dreamweaver CS5 as my editor for my code, I disabled a lot of features to make is at basic as possible, because I only need Syntax validation and Dreamweaver code color schemes. I can't find the feature to to auto organize a code, is it possible? if yes could you tell how to achieve it?

For example organizing this code

<div id="wrapper">
   <div id="content">
      <p>Content

      </p></div>
  </div>

Into this more clean version

<div id="wrapper">
    <div id="content">
        <p>Content</p>
    </div>
</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

送你一个梦 2024-12-21 20:08:08
Commands > Clean Up XHTML

来源

Commands > Clean Up XHTML

Source

跨年 2024-12-21 20:08:08

单击命令,然后单击应用源格式。完毕!

Click on Commands and then click on Apply Source Formatting. DONE!

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