mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
handle string tags
This commit is contained in:
parent
f7bf4038dc
commit
05d1ca01c3
2 changed files with 5 additions and 1 deletions
|
@ -23,6 +23,10 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined>
|
|||
return (_, file) => {
|
||||
const { data } = matter(file.value, opts)
|
||||
|
||||
if (typeof data.tags === 'string') {
|
||||
data.tags = data.tags.split(" ")
|
||||
}
|
||||
|
||||
// fill in frontmatter
|
||||
file.data.frontmatter = {
|
||||
title: file.stem ?? "Untitled",
|
||||
|
|
Loading…
Reference in a new issue