12 lines
301 B
TypeScript
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]]
|
|
},
|
|
}
|
|
}
|