mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49: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 = $article->find('*[itemtype*="schema.org/Person"]');
|
||||
if (!$authors) {
|
||||
$authors = $article->find('.metadata__source');
|
||||
}
|
||||
$authors = $article->find('*[itemtype*="schema.org/Person"]') ?? $article->find('.metadata__source');
|
||||
if ($authors) {
|
||||
$item['author'] = implode(', ', $authors);
|
||||
$item['author'] = implode(', ', array_map(function ($e) { return trim($e->plaintext); }, $authors));
|
||||
}
|
||||
|
||||
// header image
|
||||
|
Loading…
Reference in New Issue
Block a user