Does anyone know of a linux-compatible command line html formatter? You know, something where I could pass it a file that looks like:
<html>
<body>
<p>
hi
</p>
</body>
</html>
And it gives me:
<html>
<body>
<p>
hi
</p>
</body>
</html>
I'm using PHP to generate this html, so if there is some handy way to do this via php that I'm missing?