diff --git a/Makefile b/Makefile index 20d56bf..6894d64 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ new-post: POST_DIR="content/blog/$$YEAR/$$MONTH/$$DAY/dummy"; \ mkdir -p "$$POST_DIR"; \ echo "+++" > "$$POST_DIR/index.md"; \ - echo "title = Dummy Post" >> "$$POST_DIR/index.md"; \ + echo "title = \"Dummy Post\"" >> "$$POST_DIR/index.md"; \ echo "date = $$(date +%Y-%m-%d)" >> "$$POST_DIR/index.md"; \ echo "draft = false" >> "$$POST_DIR/index.md"; \ echo "+++" >> "$$POST_DIR/index.md"; \