K Gopal Krishna
2025-04-04 685c06ce2e7c559b4e2cc544e300c1262c739b1c
1
2
3
4
5
6
7
8
#!/usr/bin/env node
import workerpool from "workerpool"
const cacheFile = "./.quartz-cache/transpiled-worker.mjs"
const { parseMarkdown, processHtml } = await import(cacheFile)
workerpool.worker({
  parseMarkdown,
  processHtml,
})