From e0049060b3fadf145838c1c73c4e49b18f1ad24e Mon Sep 17 00:00:00 2001 From: i-just Date: Mon, 16 Mar 2026 15:12:51 +0100 Subject: [PATCH] toPlainText - decode html entities --- src/HtmlFieldData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HtmlFieldData.php b/src/HtmlFieldData.php index 6ecb256..a8b5310 100644 --- a/src/HtmlFieldData.php +++ b/src/HtmlFieldData.php @@ -121,7 +121,7 @@ public static function toPlainText(string $html): string 'hard_break' => true, ]); - return $converter->convert($body->html()); + return html_entity_decode($converter->convert($body->html())); } protected string $rawContent;