quartz-research-note/quartz/plugins/filters/explicit.ts

9 lines
235 B
TypeScript
Raw Normal View History

2023-05-30 15:02:20 +00:00
import { QuartzFilterPlugin } from "../types"
export const ExplicitPublish: QuartzFilterPlugin = () => ({
name: "ExplicitPublish",
2023-07-24 07:04:01 +00:00
shouldPublish(_ctx, [_tree, vfile]) {
2024-02-05 10:45:36 +00:00
return vfile.data?.frontmatter?.publish ?? false
2023-07-23 00:27:41 +00:00
},
})