From ea20a4067f15c6975736daffe3d65e139ec5fd65 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 4 Aug 2011 05:49:51 +0000 Subject: [PATCH] Notes were copied as raw HTML if more than one empty paragraph --- chrome/content/zotero/xpcom/quickCopy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/quickCopy.js b/chrome/content/zotero/xpcom/quickCopy.js index c7ed0728e..c6a7117de 100644 --- a/chrome/content/zotero/xpcom/quickCopy.js +++ b/chrome/content/zotero/xpcom/quickCopy.js @@ -203,7 +203,7 @@ Zotero.QuickCopy = new function() { + noteContent //   is the only HTML entity we allow in // notes, and it's not valid XML - .replace(' ', ' ') + .replace(/ /g, ' ') + ''); } catch (e) {