This article describes how to upload a blog of your own to this website.
All blogs are in the markdown file format.
So the upload process is as simple as follows:
- Write a text file with the contents of the blog and make sure it has the “.md” extension.
- Create a pull request on the blog GitHub page.
- Once the pull request is accepted, you’ll find your blog on the blog page.
The format of the markdown file is as follows:
+++
date = '2025-09-01T07:42:59-06:00'
title = 'This text will appear on the blog page'
+++
This text is the blog contents.
If you want to make the blog private (meaning only people with admin access to the site can see it), then add the draft option and set it to true:
+++
date = '2025-09-01T07:42:59-06:00'
draft = true
title = 'This text will appear on the blog page'
+++
This text is the blog contents.