jsHtml2Ods/src/js/Html2Ods.js

13 lines
277 B
JavaScript

/* global OpenDocument */
var Html2Ods = {};
Html2Ods.blob = function (table, options) {
return OpenDocument.OdsConverter.convertToBlob(table, options);
};
Html2Ods.xml = function (table, options) {
return OpenDocument.OdsConverter.convertToXml(table, options);
};