Welcome to my new markdown-based blog! This blog is built using Jekyll and deployed automatically through GitHub Pages.
Why Markdown?
Writing in markdown is simple and clean. You can format text easily:
- Bold text with
**text** - Italic text with
*text* - Links with
[text](url) - And much more!
How to Write Posts
Creating new blog posts is easy:
- Create a new file in the
_postsfolder - Name it with the format:
YYYY-MM-DD-post-title.md - Add YAML front matter (the content between the dashes at the top)
- Write your content in markdown
- Push to GitHub - Jekyll will automatically build and deploy it!
Example Front Matter
---
layout: post
title: "Your Post Title"
date: 2026-03-23
author: Your Name
categories: blog
excerpt: "A short description of your post"
---
Code Blocks
You can include code blocks like this:
def hello_world():
print("Hello, World!")
Happy blogging!