diff --git a/Util/HtmlReplacer.php b/Util/HtmlReplacer.php
index 93b0cab..1f48bbd 100644
--- a/Util/HtmlReplacer.php
+++ b/Util/HtmlReplacer.php
@@ -88,7 +88,7 @@ public function replace(string $html): string
*/
private function replaceImageTags(string $html): string
{
- $html = $this->maskAngleBracketsInsideQuotes($html);
+ //$html = $this->maskAngleBracketsInsideQuotes($html);
$document = $this->domUtils->htmlToDOMDocument($html);
$images = $document->getElementsByTagName('img');
foreach ($images as $image) {
@@ -99,7 +99,8 @@ private function replaceImageTags(string $html): string
}
}
- return $this->unmaskAngleBracketsInsideQuotes($html);
+ //$html = $this->unmaskAngleBracketsInsideQuotes($html);
+ return $html;
}
/**