I'm looking for a tool that will "clean up" the whitespace in HTML code. This means making this:
-----------------------------
<html><head><title>foo
</title>
</head> <body>
<blink>
text <randomtag>
moretext
</randomtag>
</blink> </body>
</html>
-----------------------------
Look like this:
-----------------------------
<html>
<head>
<title>
foo
</title>
</head>
<body>
<blink>
text
<randomtag>
moretext
</randomtag>
</blink>
</body>
</html>
-----------------------------
Does anyone here know of something (free) that will do that? |