blob: 37af8aeaff6dddaf587f95065e737645dd7d8bc3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import type { VFile } from 'vfile';
export function remarkInitializeAstroData() {
return function (tree: any, vfile: VFile) {
if (!vfile.data.astro) {
vfile.data.astro = { frontmatter: {} };
}
};
}
|