[TldrTechBridge] Fix duplicate entries and empty sections (#4466)

This commit is contained in:
Pavel Korytov 2025-03-05 21:36:41 +03:00 committed by GitHub
parent 83c36a87e2
commit f270cd35e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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