HTML Code ClinicDo you have some HTML code you'd like to share and get suggestions from others for tweaking or improving it? This discussion is the place.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the HTML Code Clinic section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I am redeveloping a website and the code/html tags are very poorly maintained by previous coder. Is there any javascript or program which scan an html or an asp page and align all the html tags within that page.
Example:
<table>
<tr><td>
</td>
</tr></table
After executing that software/ program, the code should look something similar to below:
<table>
<tr>
<td></td>
</tr>
</table>
Someone told me that the Dreamweaver MX has the option to fix the alignment. Is that true? if yes, please tell me how to do it with dreamweaver.