lint compliance

This commit is contained in:
yflory 2021-06-22 12:08:10 +02:00
parent 544e5bcbfe
commit 04fc838ef3
1 changed files with 2 additions and 2 deletions

View File

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