Mass-File and Folder Renaming
All checks were successful
GitOps Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 5s
GitOps Automatic Documentation Deployment / Sync Docs to https://docs.bunny-lab.io (push) Successful in 7s

This commit is contained in:
2026-02-24 20:26:52 -07:00
parent 2b82ef254d
commit daf24d7480
159 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
---
draft: false
date: 2024-12-15
updated: 2024-12-15
authors:
- nicole
categories:
- General
- Documentation
tags:
- Blog
- Rocket.Chat
- MkDocs
- Material MkDocs
- Documentation
---
# 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.
## 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
categories:
- General
- Documentation
tags:
- MKDocs
- Material MkDocs
- Documentation
---
# Example Post Title
Placeholder Text / Body of the Blog Post.
```