From a7ed3d56f9b8ea3194f78925e3d339f933aa726e Mon Sep 17 00:00:00 2001 From: Mynacol Date: Sat, 18 May 2024 15:46:53 +0200 Subject: [PATCH] [ZeitBridge] Prettify author field By removing HTML tags (plaintext) and trimming it. --- bridges/ZeitBridge.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bridges/ZeitBridge.php b/bridges/ZeitBridge.php index b9806e5a..07b8e70c 100644 --- a/bridges/ZeitBridge.php +++ b/bridges/ZeitBridge.php @@ -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