Aswanth
2025-05-24 6d49d975598cd7f48e2b7347c2b83d8aac6a2f56
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,
})