jsHtml2Ods/src/js/Html2Ods.js

13 lines
277 B
JavaScript
Raw Normal View History

2022-07-27 17:04:18 +02:00
/* 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);
};