lint compliance

This commit is contained in:
yflory 2021-06-22 12:08:10 +02:00
parent 544e5bcbfe
commit 04fc838ef3

View File

@ -93,10 +93,10 @@ define([
var md = Turndown({ var md = Turndown({
headingStyle: 'atx' headingStyle: 'atx'
}).turndown(toExport); }).turndown(toExport);
var blob = new Blob([md], { var mdBlob = new Blob([md], {
type: 'text/markdown;charset=utf-8' type: 'text/markdown;charset=utf-8'
}); });
return void cb(blob); return void cb(mdBlob);
} }
var html = module.getHTML(toExport); var html = module.getHTML(toExport);
cb(new Blob([ html ], { type: "text/html;charset=utf-8" })); cb(new Blob([ html ], { type: "text/html;charset=utf-8" }));