Dates in post filenames

I agree!
Ultimately I created an npm script for creating new posts. I thought I’d share maybe it helps someone coming across this thread. Doesn’t really matter if you use bash or npm scripts.

{
  "scripts": "hugo new --kind post posts/$(date \"+%F\")-new-post"
}
$ npm run new
/content/posts/2020-08-29-new-post created
2 Likes