From cee25d862d71a1f2484135f31b0bbbd5017fcd8d Mon Sep 17 00:00:00 2001 From: ORelio Date: Tue, 24 Oct 2023 19:57:25 +0200 Subject: [PATCH] [html] clean data attributes (#3782) Some feed readers had difficulties with attributes containing html tags --- lib/html.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/html.php b/lib/html.php index 1de581d9..d65d1b20 100644 --- a/lib/html.php +++ b/lib/html.php @@ -269,7 +269,15 @@ function convertLazyLoading($dom) } else { continue; // Proceed to next element without removing attributes } - // Remove attributes that may be processed by the client (data-* are not) + + // Remove data attributes, no longer necessary + foreach ($img->getAllAttributes() as $attr => $val) { + if (str_starts_with($attr, 'data-')) { + $img->removeAttribute($attr); + } + } + + // Remove other attributes that may be processed by the client foreach (['loading', 'decoding', 'srcset'] as $attr) { if ($img->hasAttribute($attr)) { $img->removeAttribute($attr);