We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc2ca38 commit 22dee3eCopy full SHA for 22dee3e
1 file changed
gdocs.js
@@ -79,6 +79,9 @@ function download(collection, name, url) {
79
// strip out all text annotations
80
data = data.replace(/\[\w{1,3}\]/mg, '');
81
82
+ // strip out all docos comments
83
+ data = data.replace(/^[^\s_]+:\n\S+[\S\s]*$/m, '')
84
+
85
// fix smart-quotes
86
data = data.replace(/[“”]/g, '"');
87
data = data.replace(/[‘’]/g, "'");
0 commit comments