From e4ff4622abb8a6dfe221ac2eeff0e99297dd1dff Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 14 Aug 2015 17:57:15 +0200 Subject: [PATCH] Fixed weird newlines showing up when pasting from Microsoft Word --- .../install/files/js/3rdParty/redactor/plugins/wbbcode.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js index fb0bad1d7d..89c1b6aaff 100644 --- a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js +++ b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js @@ -1552,6 +1552,11 @@ RedactorPlugins.wbbcode = function() { }); html = html.replace(/<\/h[1-6]>/g, '[/size]'); + // fix weird newlines found when pasting from Microsoft Word + if (/

/.test(html)) { + html = html.replace(/([^>\s])\n([^<\s])/g, '$1 $2'); + } + // fix empty paragraphs when pasting from Microsoft Word html = html.replace(/ <\/o:p>/g, '
'); -- 2.20.1