mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-02 14:58:14 +00:00
polish
This commit is contained in:
parent
b3480bdc49
commit
b90590b9f4
7 changed files with 24 additions and 8 deletions
quartz/plugins/transformers
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -22,7 +22,7 @@ const defaultOptions: Options = {
|
|||
highlight: true,
|
||||
wikilinks: true,
|
||||
callouts: true,
|
||||
mermaid: false,
|
||||
mermaid: true,
|
||||
}
|
||||
|
||||
const icons = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue