mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 17:16:18 +00:00
30 lines
657 B
JavaScript
30 lines
657 B
JavaScript
|
/*\
|
||
|
title: $:/plugins/tiddlywiki/xlsx-utils/deserializer.js
|
||
|
type: application/javascript
|
||
|
module-type: tiddlerdeserializer
|
||
|
|
||
|
XLSX file deserializer
|
||
|
|
||
|
\*/
|
||
|
(function(){
|
||
|
|
||
|
/*jslint node: true, browser: true */
|
||
|
/*global $tw: false */
|
||
|
"use strict";
|
||
|
|
||
|
/*
|
||
|
Parse an XLSX file into tiddlers
|
||
|
*/
|
||
|
exports["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"] = function(text,fields) {
|
||
|
// Collect output tiddlers in an array
|
||
|
var results = [],
|
||
|
XLSXImporter = require("$:/plugins/tiddlywiki/xlsx-utils/importer.js").XLSXImporter,
|
||
|
importer = new XLSXImporter({
|
||
|
text: text
|
||
|
});
|
||
|
// Return the output tiddlers
|
||
|
return importer.importTiddlers();
|
||
|
};
|
||
|
|
||
|
})();
|