Start flying section

This commit is contained in:
2026-01-23 15:19:35 -08:00
parent 30af32532c
commit ed7394cc49
35 changed files with 5611 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
import rehypeImageCaption from "rehype-image-caption";
import { QuartzTransformerPlugin } from "../types";
export const FigureCaptions: QuartzTransformerPlugin = () => {
return {
name: "FigureCaptions",
htmlPlugins() {
return [[rehypeImageCaption]]
},
}
}
@@ -149,6 +149,7 @@ declare module "vfile" {
draft: boolean | string
lang: string
enableToc: string
enableMeta: string
cssclasses: string[]
socialImage: string
comments: boolean | string
+1
View File
@@ -11,3 +11,4 @@ export { SyntaxHighlighting } from "./syntax"
export { TableOfContents } from "./toc"
export { HardLineBreaks } from "./linebreaks"
export { RoamFlavoredMarkdown } from "./roam"
export { FigureCaptions } from "./captions"