Jacky Zhao
2023-08-20 95fb6ccfcb5d887f1085bc1b58204b4138a2e804
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: "---",
}