From 16ffc9dce1b1932fff013f433e06f9a3a5fcb851 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Patrik=20Bj=C3=B6rklund?=
Date: Sat, 9 Nov 2024 10:08:11 +0100
Subject: [PATCH] [PUBLISHER] Merge #94
---
.../posts/publishing-this-blog-from-obsidian.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/content/posts/publishing-this-blog-from-obsidian.md b/content/posts/publishing-this-blog-from-obsidian.md
index 9111faa..2a9e9b0 100644
--- a/content/posts/publishing-this-blog-from-obsidian.md
+++ b/content/posts/publishing-this-blog-from-obsidian.md
@@ -41,5 +41,20 @@ And using this WikiLinks to MDLinks seems to work well.
Then I do bit of a hackish solution so it can find the linked files `` and push them directly to the `static` directory.
+Now for actually writing the posts I just create a new note in my blog folder and then insert my "hugo frontmatter template" like so:
+
+```json
+---
+title: "Informative title of max 20 words"
+authors: ["Patrik Björklund"]
+share: true
+date: {{date}} {{time}}:00 +0200
+summary: "Summary of max 50 words"
+tags: ['one-single-tag-with']
+series: ['Business']
+---
+```
+
That seems to be all!
+