2023-06-01 19:05:14 -04:00
|
|
|
import { QuartzTransformerPlugin } from "../types"
|
|
|
|
import rehypePrettyCode, { Options as CodeOptions } from "rehype-pretty-code"
|
|
|
|
|
2023-06-11 23:26:43 -07:00
|
|
|
export const SyntaxHighlighting: QuartzTransformerPlugin = () => ({
|
|
|
|
name: "SyntaxHighlighting",
|
|
|
|
htmlPlugins() {
|
2023-07-22 17:27:41 -07:00
|
|
|
return [
|
|
|
|
[
|
|
|
|
rehypePrettyCode,
|
|
|
|
{
|
|
|
|
theme: "css-variables",
|
|
|
|
} satisfies Partial<CodeOptions>,
|
|
|
|
],
|
|
|
|
]
|
|
|
|
},
|
2023-06-11 23:26:43 -07:00
|
|
|
})
|