Is there any open source HTML/XHTML source code beautifiers written in PHP?
By beautifier I mean library that correct white space indents and improve code readability and can be integrated with CMS.
Is there any open source HTML/XHTML source code beautifiers written in PHP?
By beautifier I mean library that correct white space indents and improve code readability and can be integrated with CMS.
$dom = new DOMDocument;
$dom -> formatOutput = true;
$dom -> substituteEntities = false;
$dom -> recover = true;
$dom -> strictErrorChecking = false;
$dom -> loadHTML ( $file);
echo $dom -> saveHTML ( $file);