Removed UTF-8 BOM in download function

This commit is contained in:
NV
2017-02-03 17:35:16 +09:00
parent f27fc90a74
commit 5a212b9335
3 changed files with 5 additions and 5 deletions

View File

@@ -612,7 +612,7 @@ export function exportToRawHTML(view) {
const blob = new Blob([html], {
type: "text/html;charset=utf-8"
});
saveAs(blob, filename);
saveAs(blob, filename, true);
}
//extract markdown body to html and compile to template
@@ -644,7 +644,7 @@ export function exportToHTML(view) {
const blob = new Blob([html], {
type: "text/html;charset=utf-8"
});
saveAs(blob, filename);
saveAs(blob, filename, true);
});
});
}