This commit is contained in:
Jacky Zhao 2023-07-08 14:36:02 -07:00
parent b3480bdc49
commit b90590b9f4
7 changed files with 24 additions and 8 deletions
quartz/plugins/transformers

View file

@ -30,7 +30,7 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined>
})
if (data.tags && !Array.isArray(data.tags)) {
data.tags = data.tags.toString().split(" ")
data.tags = data.tags.toString().split(",").map((tag: string) => tag.trim())
}
// fill in frontmatter

View file

@ -6,7 +6,7 @@ import isAbsoluteUrl from "is-absolute-url"
interface Options {
/** How to resolve Markdown paths */
markdownLinkResolution: 'absolute' | 'relative'
markdownLinkResolution: 'absolute' | 'relative' | 'shortest'
/** Strips folders from a link so that it looks nice */
prettyLinks: boolean
indexAnchorLinks: boolean
@ -35,6 +35,7 @@ export const CrawlLinks: QuartzTransformerPlugin<Partial<Options> | undefined> =
} else {
return './' + relativeToRoot(curSlug, targetSlug)
}
// todo: handle shortest path
}
const outgoing: Set<string> = new Set()

View file

@ -22,7 +22,7 @@ const defaultOptions: Options = {
highlight: true,
wikilinks: true,
callouts: true,
mermaid: false,
mermaid: true,
}
const icons = {