I'm not a developer so I don't know the right term for this.
I am dealing with code done by other and it is coded in a continuous way. Meaning not like this,
<body>
<ul>
<li>List 1</li>
<li>List 2</li>
<li>List 3</li>
</ul>
</body>
but instead, like this, continuously:
<body><ul><li>List 1</li><li>List 2</li><li>List 3</li></ul></body>
Now my question: is there a way or automatic way for Adobe Dreamweaver to make the second look like the first? I mean in one click it will all be indent as the first?