(code: string)
| 68 | } |
| 69 | |
| 70 | async function highlightCode(code: string) { |
| 71 | const file = await unified() |
| 72 | .use(remarkParse) |
| 73 | .use(remarkRehype) |
| 74 | .use(rehypePrettyCode) |
| 75 | .use(rehypeStringify) |
| 76 | .process(code) |
| 77 | |
| 78 | return String(file) |
| 79 | } |
| 80 | |
| 81 | // import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area" |
| 82 | // import { cn } from "@/lib/utils" |