From 7c4c72f3107eea28fc646fa91dbb107d25c79ac8 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Thu, 9 Apr 2020 13:17:09 -0400 Subject: [PATCH] Changing frontmatter back to TOML per #127 --- archetypes/posts.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/archetypes/posts.md b/archetypes/posts.md index 9164849..3479f49 100644 --- a/archetypes/posts.md +++ b/archetypes/posts.md @@ -1,11 +1,11 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -date: "{{ .Date }}" -draft: true -author: '{{ index .Site.Author "name" }}' -cover: "" -tags: ["", ""] -keywords: ["", ""] -description: "" -showFullContent : false ---- ++++ +title = "{{ replace .Name "-" " " | title }}" +date = "{{ .Date }}" +draft = true +author = '{{ index .Site.Author "name" }}' +cover = "" +tags = ["", ""] +keywords = ["", ""] +description = "" +showFullContent = false ++++