commit 10cbc0ceeb088313175032df11928b82cc44c4f4
parent 477d0effe0d51f70a2438539a26e277f97b509cc
Author: Simon Kornblith <simon@simonster.com>
Date: Tue, 6 Jul 2010 07:23:10 +0000
don't stick an extra newline between all bibliography entries (changes to citeproc-js RTF formatter code)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/citeproc.js b/chrome/content/zotero/xpcom/citeproc.js
@@ -7207,7 +7207,7 @@ CSL.Output.Formats.prototype.rtf = {
"bibend":"}",
"@display/block":"%%STRING%%\\line\r\n",
"@bibliography/entry": function(state,str){
- return str+"\\\r\n";
+ return str;
},
"@display/left-margin": function(state,str){
return str+"\\tab ";