Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 4fd7b10

Browse files
Merge pull request alvarcarto#137 from tomasc/master
output: :html to return full page (instead of body only)
2 parents 218d391 + 8b31dd8 commit 4fd7b10

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CHANGELOG
22

3+
* change the `:html` output to return `document.documentElement.innerHTML` instead of previously used `document.body.innerHTML`
4+
35
## 1.0.0
46

57
* initial version

src/core/render-core.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ async function render(_opts = {}) {
174174
}
175175
data = await page.pdf(opts.pdf);
176176
} else if (opts.output === 'html') {
177-
data = await page.evaluate(() => document.body.innerHTML);
177+
data = await page.evaluate(() => document.documentElement.innerHTML);
178178
} else {
179179
// This is done because puppeteer throws an error if fullPage and clip is used at the same
180180
// time even though clip is just empty object {}
@@ -248,4 +248,3 @@ function logOpts(opts) {
248248
module.exports = {
249249
render,
250250
};
251-

0 commit comments

Comments
 (0)