jackyzha0 / quartz

🌱 a fast, batteries-included static-site generator that transforms Markdown content into fully functional websites
https://quartz.jzhao.xyz
MIT License
6.82k stars 2.47k forks source link

fix: "draft" true or false in frontmatter still removes from publishing #1244 #1249

Closed 1etterh closed 3 months ago

1etterh commented 3 months ago

ISSUE:

The only way to publish is by removing "draft" from even if draft is false

Solution:

edit: quartz\plugins\filters\draft.ts

    const draftFlag: boolean = vfile.data?.frontmatter?.draft || false

1244