[TldrTechBridge] Fix duplicate entries and empty sections

This commit is contained in:
SqrtMinusOne 2025-03-03 17:03:42 +03:00
parent 00a24e2f69
commit bb3f229292

View File

@ -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];
}