如何在 Dreamweaver 中自动组织代码以使其对读者更友好?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来源
Source
单击命令,然后单击应用源格式。完毕!
Click on Commands and then click on Apply Source Formatting. DONE!