mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
[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:
parent
f358f1abec
commit
adcc8e371d
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user