Issue
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>
Solution
Commands > Clean Up XHTML
Answered By - Zoltan Toth Answer Checked By - Clifford M. (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.