Install php tidy sudo yum install php-tidy
then restart Apache
Last active
August 29, 2015 14:26
-
-
Save alexcheng1982/e8f3e3d1d8487b0b0736 to your computer and use it in GitHub Desktop.
PHP HTML tidy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$html = $this->getChildHtml('description'); | |
$tidy = new Tidy(); | |
$tidy->parseString($html, $config, 'utf8'); | |
$tidy->cleanRepair(); | |
echo $tidy; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment