Jacky Zhao
2023-08-17 0c199975f2d469ecdfd7efcf2ddd16ffa1dc492b
quartz/plugins/transformers/frontmatter.ts
@@ -2,15 +2,13 @@
import remarkFrontmatter from "remark-frontmatter"
import { QuartzTransformerPlugin } from "../types"
import yaml from "js-yaml"
import { slugTag } from "../../path"
import { slugTag } from "../../util/path"
export interface Options {
  language: "yaml" | "toml"
  delims: string | string[]
}
const defaultOptions: Options = {
  language: "yaml",
  delims: "---",
}