forked from lowlighter/metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkdown_example.mjs
More file actions
21 lines (19 loc) · 829 Bytes
/
markdown_example.mjs
File metadata and controls
21 lines (19 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//Imports
import puppeteer from "puppeteer"
//Setup browser
const browser = await puppeteer.launch({
headless:true,
executablePath:process.env.PUPPETEER_BROWSER_PATH,
args:["--no-sandbox", "--disable-extensions", "--disable-setuid-sandbox", "--disable-dev-shm-usage"],
ignoreDefaultArgs:["--disable-extensions"],
})
const page = await browser.newPage()
//Select markdown example and take screenshoot
await page.setViewport({width:600, height:600})
await page.goto("https://github.com/lowlighter/lowlighter/blob/master/metrics.markdown.md")
const clip = await page.evaluate(() => {
const {x, y, width, height} = document.querySelector("#readme").getBoundingClientRect()
return {x, y, width, height}
})
await page.screenshot({type:"png", path:"metrics.markdown.png", clip, omitBackground:true})
await browser.close()