From ad71b4a53542967860b133b8b61fb796545edb86 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sun, 15 Dec 2024 16:34:43 -0700 Subject: [PATCH] Update blog/posts/Implementing the Blog Plugin.md --- blog/posts/Implementing the Blog Plugin.md | 31 ++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/blog/posts/Implementing the Blog Plugin.md b/blog/posts/Implementing the Blog Plugin.md index b68671d..eb0ad82 100644 --- a/blog/posts/Implementing the Blog Plugin.md +++ b/blog/posts/Implementing the Blog Plugin.md @@ -5,7 +5,8 @@ updated: 2024-12-15 authors: - nicole links: - - https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/ + - External Link: https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/ + - docs/Servers/Containerization/Docker/Compose/Material MkDocs.md categories: - General - Documentation @@ -16,4 +17,30 @@ tags: --- # Implementing the Blog Plugin -I had decided that I wanted to experiment with the built-in blog functionality of Material MKDocs because it might be a way to catalog my thoughts as I work on projects. A lot of time, my notes are scattered across RocketChat and Discord, and get thrown into disarray, so I hope that I can instead centralize my thoughts, projects, and things of that sort here. This is the first step on that journey. \ No newline at end of file +I had decided that I wanted to experiment with the built-in blog functionality of Material MKDocs because it might be a way to catalog my thoughts as I work on projects. A lot of time, my notes are scattered across RocketChat and Discord, and get thrown into disarray, so I hope that I can instead centralize my thoughts, projects, and things of that sort here. This is the first step on that journey. + +## The blog workflow +When I write a blog article, it is generally based on the official [Blog Documentation](https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/). The formatting uses a few metadata tags, and looks like the following: + +```md +--- +draft: false +date: 2024-12-15 +updated: 2024-12-15 +authors: + - nicole +links: + - External Link: https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/ + - docs/Servers/Containerization/Docker/Compose/Material MkDocs.md +categories: + - General + - Documentation +tags: + - MKDocs + - Material MkDocs + - Documentation +--- + +# Implementing the Blog Plugin +I had decided that I wanted t +``` \ No newline at end of file