import { runHighlighterWithAstro } from '@astrojs/prism/dist/highlighter'; import type { Root } from 'hast'; import type { Plugin } from 'unified'; import { highlightCodeBlocks } from './highlight.js'; export const rehypePrism: Plugin<[], Root> = () => { return async (tree) => { await highlightCodeBlocks(tree, (code, language) => { let { html, classLanguage } = runHighlighterWithAstro(language, code); return Promise.resolve( `
${html}
` ); }); }; };