From e977319dc8a4b8b0b1eb185698edeba4de49489b Mon Sep 17 00:00:00 2001 From: George <31376482+george-gca@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:52:26 -0300 Subject: [PATCH] Added link to jekyll docs about post file naming --- CUSTOMIZE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CUSTOMIZE.md b/CUSTOMIZE.md index 6c6a2071cd23..a12f5687dfac 100644 --- a/CUSTOMIZE.md +++ b/CUSTOMIZE.md @@ -58,7 +58,7 @@ You can create new pages by adding new Markdown files in the [\_pages](_pages/) ## Creating new blog posts -To create a new blog post, you can add a new Markdown file in the [\_posts](_posts/) directory. The name of the file must follow the format `YYYY-MM-DD-title.md`. The easiest way to do this is to copy an existing blog post and modify it. Note that some blog posts have optional fields in the [frontmatter](https://jekyllrb.com/docs/front-matter/) that are used to enable specific behaviors or functions. +To create a new blog post, you can add a new Markdown file in the [\_posts](_posts/) directory. The [name of the file must follow](https://jekyllrb.com/docs/posts/#creating-posts) the format `YYYY-MM-DD-title.md`. The easiest way to do this is to copy an existing blog post and modify it. Note that some blog posts have optional fields in the [frontmatter](https://jekyllrb.com/docs/front-matter/) that are used to enable specific behaviors or functions. If you want to create blog posts that are not ready to be published, but you want to track it with git, you can create a [\_drafts](https://jekyllrb.com/docs/posts/#drafts) directory and store them there.