Created
May 21, 2012 20:55
-
-
Save sanguis/2764624 to your computer and use it in GitHub Desktop.
tidy settings that I found work best for feeds_xpathparser
This file contains 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 | |
$tidyConfig = array( | |
'merge-divs' => FALSE, | |
'merge-spans' => FALSE, | |
'join-styles' => FALSE, | |
'drop-empty-paras' => TRUE, | |
'wrap' => 0, | |
'tidy-mark' => FALSE, | |
'escape-cdata' => TRUE, | |
'word-2000' => TRUE, | |
'hide-comments' => TRUE, | |
'output-xhtml' => TRUE, | |
// 'quote-nbsp' => 0, | |
'clean' => TRUE, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment