fix() публичный Метод

public fix ( string $content ) : string
$content string HTML content to fix
Результат string Fixed content
Пример #1
0
 public function testProtectedTags()
 {
     $fixer = new Fixer(array('Ellipsis'));
     $fixer->setProtectedTags(array('pre', 'a'));
     $fixed_content = $fixer->fix('<p>Fixed...</p> <pre>Not fixed...</pre> <p>Fixed... <a>Not Fixed...</a>.</p>');
     $this->assertEquals('<p>Fixed&hellip;</p> <pre>Not fixed...</pre> <p>Fixed&hellip; <a>Not Fixed...</a>.</p>', $fixed_content);
 }