Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
231 Bytes
import { codeToHtml } from "shiki"
export const highlightCode = (
code: string,
opts?: Partial<Parameters<typeof codeToHtml>[1]>,
) => {
return codeToHtml(code, {
lang: "tsx",
theme: "dark-plus",
...opts,
})
}