oo7ml
07-12-2007, 10:29 AM
Is there such a program that will organize your code
Say my code is a complete mess like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>----- Template -----</title><link rel=stylesheet href=stylesheet.css type=text/css>
</head>
<body>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center">
<tr><!--top--> <td class="top">
</td> </tr>
<tr><!--header-->
<td class="header">
</td>
</tr>
<tr><!--main-->
<td class="main">
</td>
</tr> <tr><!--bottom--><td class="bottom">
</td>
</tr></table></body></html>
Is there such a program that would organize it into something similar below
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="imagetoolbar" content="no">
<title>----- Template -----</title>
<link rel=stylesheet href=stylesheet.css type=text/css>
</head>
<body>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center">
<tr><!--top-->
<td class="top">
</td>
</tr>
<tr><!--header-->
<td class="header">
</td>
</tr>
<tr><!--main-->
<td class="main">
</td>
</tr>
<tr><!--bottom-->
<td class="bottom">
</td>
</tr>
</table>
</body>
</html>
Say my code is a complete mess like this
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>----- Template -----</title><link rel=stylesheet href=stylesheet.css type=text/css>
</head>
<body>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center">
<tr><!--top--> <td class="top">
</td> </tr>
<tr><!--header-->
<td class="header">
</td>
</tr>
<tr><!--main-->
<td class="main">
</td>
</tr> <tr><!--bottom--><td class="bottom">
</td>
</tr></table></body></html>
Is there such a program that would organize it into something similar below
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="imagetoolbar" content="no">
<title>----- Template -----</title>
<link rel=stylesheet href=stylesheet.css type=text/css>
</head>
<body>
<table width="760" border="0" cellspacing="0" cellpadding="0" align="center">
<tr><!--top-->
<td class="top">
</td>
</tr>
<tr><!--header-->
<td class="header">
</td>
</tr>
<tr><!--main-->
<td class="main">
</td>
</tr>
<tr><!--bottom-->
<td class="bottom">
</td>
</tr>
</table>
</body>
</html>