From 7d6333413dd3e1bff9729e69bee42bbad7e4ef1f Mon Sep 17 00:00:00 2001 From: Brandon Pugh Date: Fri, 31 May 2024 16:09:58 -0500 Subject: [PATCH] Add title markdown front matter template --- new-til.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/new-til.sh b/new-til.sh index d746dbf..f500db7 100644 --- a/new-til.sh +++ b/new-til.sh @@ -19,6 +19,7 @@ create_markdown_file() { # Add YAML front matter to the file echo "---" >> "${fullpath}" echo "date: ${date}" >> "${fullpath}" + echo "title: " >> "${fullpath}" echo "---" >> "${fullpath}" echo "" >> "${fullpath}" echo "#" >> "${fullpath}"