[TarnkappeBridge] changed "unwanted stuff" (#4206)

* [TarnkappeBridge] changed "unwanted stuff"

em was removed because the annoying affiliate info, but it also deleted the text from blockquotes.

The p-element with the affiliate info has no attributes like class, but it is the only p-element with a style-attribute, so I used this to identify it.

* Update TarnkappeBridge.php

removed whitespace

* Update TarnkappeBridge.php

don't know why I did it twice before
This commit is contained in:
Tone 2024-08-09 15:20:10 +02:00 committed by GitHub
parent f358f1abec
commit adcc8e371d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,10 +65,11 @@ class TarnkappeBridge extends FeedExpander
// remove unwanted stuff
foreach (
$article->find('em, section, div.menu') as $element
$article->find('section, div.menu, p[style]') as $element
) {
$element->remove();
}
// reload html, as remove() is buggy
$article = str_get_html($article->outertext);