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: "---", }