Emile Bangma
2025-07-04 467896413ffb4dff9630c7d31d6d50c1b8ccd1f7
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,
})