Skip to content

Commit

Permalink
fix: reland string coercion in title
Browse files Browse the repository at this point in the history
  • Loading branch information
jackyzha0 committed Dec 10, 2023
1 parent 2c69b0c commit c654690
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions quartz/plugins/transformers/frontmatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { QuartzTransformerPlugin } from "../types"
import yaml from "js-yaml"
import toml from "toml"
import { slugTag } from "../../util/path"
import { QuartzPluginData } from "../vfile"

export interface Options {
delims: string | string[]
Expand Down Expand Up @@ -37,16 +38,18 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined>
})

// tag is an alias for tags
if (data.tag !== null) {
data.tags = data.tag.toString()
if (data.tag) {
data.tags = data.tag
}

// coerce title to string
if (data.title !== null) {
if (data.title) {
data.title = data.title.toString()
} else if (data.title === null || data.title === undefined) {
data.title = file.stem ?? "Untitled"
}

if (data.tags !== null && !Array.isArray(data.tags)) {
if (data.tags && !Array.isArray(data.tags)) {
data.tags = data.tags
.toString()
.split(oneLineTagDelim)
Expand All @@ -57,11 +60,7 @@ export const FrontMatter: QuartzTransformerPlugin<Partial<Options> | undefined>
data.tags = [...new Set(data.tags?.map((tag: string) => slugTag(tag)))] ?? []

// fill in frontmatter
file.data.frontmatter = {
title: file.stem ?? "Untitled",
tags: [],
...data,
}
file.data.frontmatter = data as QuartzPluginData["frontmatter"]
}
},
]
Expand Down

0 comments on commit c654690

Please sign in to comment.