import { codeToHtml } from "shiki" | |
export const highlightCode = ( | |
code: string, | |
opts?: Partial<Parameters<typeof codeToHtml>[1]>, | |
) => { | |
return codeToHtml(code, { | |
lang: "tsx", | |
theme: "dark-plus", | |
...opts, | |
}) | |
} | |
import { codeToHtml } from "shiki" | |
export const highlightCode = ( | |
code: string, | |
opts?: Partial<Parameters<typeof codeToHtml>[1]>, | |
) => { | |
return codeToHtml(code, { | |
lang: "tsx", | |
theme: "dark-plus", | |
...opts, | |
}) | |
} | |