17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
import { QuartzTransformerPlugin } from "../types"
|
|
import rehypePrettyCode, { Options as CodeOptions } from "rehype-pretty-code"
|
|
|
|
export const SyntaxHighlighting: QuartzTransformerPlugin = () => ({
|
|
name: "SyntaxHighlighting",
|
|
htmlPlugins() {
|
|
return [
|
|
[
|
|
rehypePrettyCode,
|
|
{
|
|
theme: "css-variables",
|
|
} satisfies Partial<CodeOptions>,
|
|
],
|
|
]
|
|
},
|
|
})
|