blog/quartz/plugins/transformers/captions.ts
2026-01-23 15:19:35 -08:00

12 lines
301 B
TypeScript

import rehypeImageCaption from "rehype-image-caption";
import { QuartzTransformerPlugin } from "../types";
export const FigureCaptions: QuartzTransformerPlugin = () => {
return {
name: "FigureCaptions",
htmlPlugins() {
return [[rehypeImageCaption]]
},
}
}