remove gdocs.js workaround for extra space issue in gdocs api

This commit is contained in:
Igor Minar
2011-05-09 23:48:25 -07:00
parent 91f9efed49
commit 8fa598fa00

View File

@@ -72,7 +72,6 @@ function download(collection, name, url) {
function(data){
data = data.replace('\ufeff', '');
data = data.replace(/\r\n/mg, '\n');
data = data.replace(/^ /mg, ' '); //for some reason gdocs drop first space for indented lines
// strip out all text annotation comments
data = data.replace(/^\[a\][\S\s]*/m, '');