diff --git a/lib/html.php b/lib/html.php index d5f66676..ed1b3945 100644 --- a/lib/html.php +++ b/lib/html.php @@ -278,6 +278,25 @@ $keptText = array()){ return $htmlContent; } +function backgroundToImg($htmlContent) { + + $regex = '/background-image[ ]{0,}:[ ]{0,}url\([\'"]{0,}(.*?)[\'"]{0,}\)/'; + $htmlContent = str_get_html($htmlContent); + + foreach($htmlContent->find('*[!b38fd2b1fe7f4747d6b1c1254ccd055e]') as $element) { + + if(preg_match($regex, $element->style, $matches) > 0) { + + $element->outertext = ''; + + } + + } + + return $htmlContent; + +} + function defaultLinkTo($content, $server){ foreach($content->find('img') as $image){ if(strpos($image->src, 'http') === false