Add <html> tag in prepared content from extension

This commit is contained in:
Hongbo Wu
2022-06-06 22:36:53 +08:00
parent 3787fa40ce
commit 9ba5b9c697

View File

@ -143,7 +143,7 @@
* capture them separately and concatenate them here with head and body tags
* preserved.
*/
const contentCopyHtml = `<head>${document.head.innerHTML}</head><body>${contentCopyEl.innerHTML}</body>`;
const contentCopyHtml = `<html><head>${document.head.innerHTML}</head><body>${contentCopyEl.innerHTML}</body></html>`;
// Cleaning up the copy element
contentCopyEl.remove();
return contentCopyHtml;