From 79641b47a52216ecbd805d289ec16bf4cb2e1e69 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 3 Feb 2025 21:39:53 +0800 Subject: [PATCH] Don't wrap in span if there's nothing --- src/utils/enhance-content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/enhance-content.js b/src/utils/enhance-content.js index 7e0b6076..bf3a0977 100644 --- a/src/utils/enhance-content.js +++ b/src/utils/enhance-content.js @@ -294,7 +294,7 @@ function _enhanceContent(content, opts = {}) { // Workaround for Safari so that `text-decoration-thickness` works // Wrap child text nodes in spans for (const node of dom.childNodes) { - if (node.nodeType === Node.TEXT_NODE) { + if (node.nodeType === Node.TEXT_NODE && node.textContent.trim?.()) { const span = document.createElement('span'); span.textContent = node.textContent; dom.replaceChild(span, node);