mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[ZeitBridge] Prettify author field
By removing HTML tags (plaintext) and trimming it.
This commit is contained in:
parent
b785a4b64e
commit
a7ed3d56f9
@ -108,12 +108,9 @@ class ZeitBridge extends FeedExpander
|
|||||||
}
|
}
|
||||||
|
|
||||||
// authors
|
// authors
|
||||||
$authors = $article->find('*[itemtype*="schema.org/Person"]');
|
$authors = $article->find('*[itemtype*="schema.org/Person"]') ?? $article->find('.metadata__source');
|
||||||
if (!$authors) {
|
|
||||||
$authors = $article->find('.metadata__source');
|
|
||||||
}
|
|
||||||
if ($authors) {
|
if ($authors) {
|
||||||
$item['author'] = implode(', ', $authors);
|
$item['author'] = implode(', ', array_map(function ($e) { return trim($e->plaintext); }, $authors));
|
||||||
}
|
}
|
||||||
|
|
||||||
// header image
|
// header image
|
||||||
|
Loading…
Reference in New Issue
Block a user