chore: code formatting
This commit is contained in:
8
.github/scripts/markdown_example.mjs
vendored
8
.github/scripts/markdown_example.mjs
vendored
@@ -11,11 +11,11 @@ const browser = await puppeteer.launch({
|
||||
const page = await browser.newPage()
|
||||
|
||||
//Select markdown example and take screenshoot
|
||||
await page.setViewport({ width: 600, height: 600 })
|
||||
await page.setViewport({width: 600, height: 600})
|
||||
await page.goto("https://github.com/lowlighter/metrics/blob/examples/metrics.markdown.md")
|
||||
const clip = await page.evaluate(() => {
|
||||
const { x, y, width, height } = document.querySelector("#readme").getBoundingClientRect()
|
||||
return { x, y, width, height }
|
||||
const {x, y, width, height} = document.querySelector("#readme").getBoundingClientRect()
|
||||
return {x, y, width, height}
|
||||
})
|
||||
await page.screenshot({ type: "png", path: "/tmp/metrics.markdown.png", clip, omitBackground: true })
|
||||
await page.screenshot({type: "png", path: "/tmp/metrics.markdown.png", clip, omitBackground: true})
|
||||
await browser.close()
|
||||
|
||||
Reference in New Issue
Block a user