We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6e4636 commit a4dd9caCopy full SHA for a4dd9ca
1 file changed
gdocs.js
@@ -73,6 +73,9 @@ function download(collection, name, url) {
73
data = data.replace('\ufeff', '');
74
data = data.replace(/\r\n/mg, '\n');
75
76
+ // strip out all text annotations
77
+ data = data.replace(/\[[a-zA-Z]{1,2}\]/mg, '');
78
+
79
// strip out all docos comments
80
data = data.replace(/^[^\s_]+:\n\S+[\S\s]*$/m, '');
81
0 commit comments