mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 05:05:44 +00:00
20 lines
344 B
TypeScript
20 lines
344 B
TypeScript
"use server"
|
|
|
|
import { codeToHtml } from "shiki"
|
|
|
|
export async function highlightCode(code: string) {
|
|
const html = codeToHtml(code, {
|
|
lang: "typescript",
|
|
theme: "github-dark-default",
|
|
transformers: [
|
|
{
|
|
code(node) {
|
|
node.properties["data-line-numbers"] = ""
|
|
},
|
|
},
|
|
],
|
|
})
|
|
|
|
return html
|
|
}
|