more documentation

This commit is contained in:
Jacky Zhao
2023-08-11 00:31:44 -07:00
parent b3635a0c5a
commit 41f7de75a9
10 changed files with 173 additions and 7 deletions

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