Может ли кто-нибудь помочь выявить проблему с приборкой?
Следующая строка:
<p><u>Risk Warning</u><br />Please note that...</p>
После:
$config = array(
'clean' => true,
'doctype' => '<!DOCTYPE HTML>',
'drop-proprietary-attributes' => true,
'output-xhtml' => true,
'show-body-only' => true,
'drop-font-tags' => false,
'merge-spans' => true,
'wrap' => '0',
'ascii-chars' => false,
'char-encoding' => 'utf8',
'input-encoding' => 'utf8',
'output-encoding' => 'utf8'
);
$tidy = new \tidy();
$tidy->parseString($text, $config, 'utf8');
$tidy->cleanRepair();
echo tidy_get_output($tidy);
Заменяется на:
<p><span class="c1">Risk Warning</span><br />Please note that...</p>
Как предотвратить изменение тега u? Заранее спасибо.
$ Tidy-> cleanRepair (); — здесь не нужен
Других решений пока нет …