2023-05-30 15:02:20 +00:00
|
|
|
import matter from "gray-matter"
|
|
|
|
import remarkFrontmatter from 'remark-frontmatter'
|
|
|
|
import { QuartzTransformerPlugin } from "../types"
|
|
|
|
|
|
|
|
export interface Options {
|
|
|
|
language: 'yaml' | 'toml',
|
|
|
|
delims: string | string[]
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultOptions: Options = {
|
|
|
|
language: 'yaml',
|
|
|
|
delims: '---'
|
|
|
|
}
|
|
|
|
|
2023-06-12 06:26:43 +00:00
|
|
|
export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined> = (userOpts) => {
|
|
|
|
const opts = { ...defaultOptions, ...userOpts }
|
|
|
|
return {
|
|
|
|
name: "FrontMatter",
|
|
|
|
markdownPlugins() {
|
|
|
|
return [
|
|
|
|
remarkFrontmatter,
|
|
|
|
() => {
|
|
|
|
return (_, file) => {
|
|
|
|
const { data } = matter(file.value, opts)
|
|
|
|
|
|
|
|
// fill in frontmatter
|
|
|
|
file.data.frontmatter = {
|
|
|
|
title: file.stem ?? "Untitled",
|
|
|
|
tags: [],
|
|
|
|
...data
|
|
|
|
}
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-12 06:26:43 +00:00
|
|
|
]
|
|
|
|
},
|
2023-05-30 15:02:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'vfile' {
|
|
|
|
interface DataMap {
|
|
|
|
frontmatter: { [key: string]: any } & {
|
|
|
|
title: string
|
|
|
|
tags: string[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|