Two improvements to xlsx-utils plugin

Add support for skipping an entire tiddler if a particular column is
blank

Add support for reading a row by column, making each of the columns
into a fieldname.

Also significantly refactored the code to break up the main, monolithic
function.
This commit is contained in:
Jermolene
2016-11-14 15:23:15 +00:00
parent f7d81a00c2
commit a485eb8588
4 changed files with 145 additions and 88 deletions

View File

@@ -36,7 +36,7 @@ Command.prototype.execute = function() {
filename: filename,
importSpec: importSpec
});
$tw.wiki.addTiddlers(importer.importTiddlers());
$tw.wiki.addTiddlers(importer.getResults());
return null;
};