Stephen Tse
2025-03-31 a21f588c4834168386bf0461df14bf7164b53fb9
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,
})