borkdude / quickblog

Light-weight static blog engine for Clojure and babashka
https://blog.michielborkent.nl/
MIT License
165 stars 28 forks source link

Preview post added to index #74

Closed jmglov closed 9 months ago

jmglov commented 10 months ago

Posts with

Preview: true

in their metadata are not meant to be published, and therefore should be omitted from the following places:

Preview posts are added to index.html.

Repro steps

bb quickblog new --file test-preview.md --title 'preview test'
vim posts/test-preview.md  # add Preview: true
bb quickblog render                                    
grep -rn test-preview public/ | cut -d ':' -f 1 | sort | uniq
# =>
# public/index.html
# public/test-preview.html
jmglov commented 10 months ago

Picking this one up