Files
shadcn-ui/deprecated/www/lib/highlight-code.ts
shadcn 2bfc1c82ba chore: deprecate www (#8629)
* chore: deprecate www

* chore: updates

* fix
2025-10-29 20:50:55 +04:00

18 lines
329 B
TypeScript

import { codeToHtml } from "shiki"
export async function highlightCode(code: string) {
const html = await codeToHtml(code, {
lang: "jsx",
theme: "github-dark-default",
transformers: [
{
code(node) {
node.properties["data-line-numbers"] = ""
},
},
],
})
return html
}