From ad3237ab94cd69b574dbe7ccd9f6bd0d55a2070e Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Sat, 5 Apr 2025 10:44:03 -0600 Subject: [PATCH] htmlToMarkdown: dont stop on , wcgw :clueless: --- src/util/html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/html.js b/src/util/html.js index 5b928b4..9a2d013 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -36,7 +36,7 @@ const parser = new XMLParser({ ignoreAttributes: false, preserveOrder: true, unpairedTags: ["hr", "br", "link", "meta"], - stopNodes: ["*.pre", "*.script", "*.code"], + stopNodes: ["*.pre", "*.script"], processEntities: true, htmlEntities: true, attributeNamePrefix: "$",