From 9d93ff2322eb9736499ea02327af1e6c627b581b Mon Sep 17 00:00:00 2001 From: Michael Overmeyer Date: Mon, 15 Mar 2021 18:41:32 -0400 Subject: [PATCH] Use ISO 8601 for date in template As it stands, it mashes all the segments together, so it doesn't look like anything --- .foam/templates/your-first-template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.foam/templates/your-first-template.md b/.foam/templates/your-first-template.md index d1c1767..5f85612 100644 --- a/.foam/templates/your-first-template.md +++ b/.foam/templates/your-first-template.md @@ -14,7 +14,7 @@ Below you can see an example showing a todo list and a timestamp. 2. ${2:A second tabstop} 3. ${3:A third tabstop} -Note Created: ${CURRENT_YEAR}${CURRENT_MONTH}${CURRENT_DATE} +Note Created: ${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE} ---