From c192e8001ac81cab132ae033b39f09a094587633 Mon Sep 17 00:00:00 2001 From: Menci Date: Sat, 23 Mar 2019 18:13:26 +0800 Subject: [PATCH] Fix missing cell borders for table with merged cells --- utility.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility.js b/utility.js index d6f764c..f2524fa 100644 --- a/utility.js +++ b/utility.js @@ -39,7 +39,7 @@ module.exports = { if (noReplaceUI) return s; s = s.split('
').join('
').split('
').join('
') - .split('').join('
') + .split('
').join('
') .split('
').join('
').split('
').join(''); let jsdom = new JSDOM(), document = jsdom.window.document;