Tuesday, July 26, 2022

[FIXED] How to auto organize code in Dreamweaver to make it more reader friendly?

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

Source



Answered By - Zoltan Toth
Answer Checked By - Clifford M. (PHPFixing Volunteer)

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.