We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdef129 commit b7f9502Copy full SHA for b7f9502
src/Document.php
@@ -21,7 +21,7 @@ public function __construct(Extractor $extractor)
21
22
$html = (string) $extractor->getResponse()->getBody();
23
$html = str_replace('<br>', "\n<br>", $html);
24
- $html = str_replace('<br ', "\n <br ", $html);
+ $html = str_replace('<br ', "\n<br ", $html);
25
26
$this->document = !empty($html) ? Parser::parse($html) : new DOMDocument();
27
$this->initXPath();
0 commit comments