We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b792b commit dce84f0Copy full SHA for dce84f0
lib/cts-parser.js
@@ -362,9 +362,11 @@ var CtsParser = {
362
// TODO: Get these special cases out of here!
363
// Parser shouldn't know about particulars of trees!
364
if (kind == 'gsheet') {
365
+ treeSpec.name = h[0];
366
+ treeSpec.url = h[1];
367
treeSpec.opts['name'] = h[0];
368
treeSpec.opts['url'] = h[1];
- if (h.length > 2) {
369
+ if (h.length > 2) {
370
treeSpec.opts['worksheet'] = h[2];
371
}
372
} else if (kind == 'html') {
0 commit comments