mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-01 14:20:16 +02:00
[ScmbBridge] Remove "read more" text only if it exists (#2368)
This commit is contained in:
@@ -18,7 +18,10 @@ class ScmbBridge extends BridgeAbstract {
|
||||
$item['title'] = $article->find('header h1 a', 0)->innertext;
|
||||
|
||||
// remove text "En savoir plus" from anecdote content
|
||||
$article->find('span.read-more', 0)->outertext = '';
|
||||
$readMoreButton = $article->find('span.read-more', 0);
|
||||
if ($readMoreButton) {
|
||||
$readMoreButton->outertext = '';
|
||||
}
|
||||
$content = $article->find('p.summary a', 0)->innertext;
|
||||
|
||||
// remove superfluous spaces at the end
|
||||
|
Reference in New Issue
Block a user