mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-15 11:51:34 +00:00
18 lines
329 B
TypeScript
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
|
|
}
|