diff --git a/bridges/TldrTechBridge.php b/bridges/TldrTechBridge.php index 222cd49e..7813933f 100644 --- a/bridges/TldrTechBridge.php +++ b/bridges/TldrTechBridge.php @@ -57,6 +57,9 @@ class TldrTechBridge extends BridgeAbstract continue; } $itemUrl = Url::fromString(self::URI . ltrim($child->href, '/')); + if ($itemUrl == $locationUrl) { + continue; + } $this->extractItem($itemUrl); if (count($this->items) >= $limit) { break; @@ -125,6 +128,11 @@ class TldrTechBridge extends BridgeAbstract } } } + foreach ($content->find('section') as $section) { + if (count($section->children()) == 0) { + $content->removeChild($section); + } + } $title = $content->find('h2', 0); return [$content->innertext, $title->plaintext]; }