takumi-markdown 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Custom rehype-highlight plugin with language subset
3
+ * Uses lowlight core to minimize bundle size
4
+ */
5
+ import type { Root } from 'hast';
6
+ interface Options {
7
+ prefix?: string;
8
+ ignoreMissing?: boolean;
9
+ }
10
+ /**
11
+ * Custom rehype-highlight plugin
12
+ */
13
+ export default function rehypeHighlightCustom(options?: Options): (tree: Root) => void;
14
+ export {};