File size: 231 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { codeToHtml } from "shiki"
export const highlightCode = (
code: string,
opts?: Partial<Parameters<typeof codeToHtml>[1]>,
) => {
return codeToHtml(code, {
lang: "tsx",
theme: "dark-plus",
...opts,
})
}
|