Preview:```ts
declare const payload: {
contents: string
name: string
}[]
let content = ""
let onOpen: string | null = null
let onClose: string | null = null
payload.forEach(function (payload, index) {
if (index === 0) {
content = payload.contents
} else {
if (payload.name === "on
...```
You can choose specific lines to embed by selecting them before copying the link.