more documentation

This commit is contained in:
Jacky Zhao 2023-08-11 00:31:44 -07:00
parent df02ea20d7
commit 259d0a6d9a
10 changed files with 173 additions and 7 deletions
quartz/plugins/transformers

View file

@ -5,12 +5,10 @@ import yaml from "js-yaml"
import { slugTag } from "../../path"
export interface Options {
language: "yaml" | "toml"
delims: string | string[]
}
const defaultOptions: Options = {
language: "yaml",
delims: "---",
}