mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add <html> tag in prepared content from extension
This commit is contained in:
parent
3787fa40ce
commit
9ba5b9c697
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue