Post

Quick Guide - Creating Posts in Jekyll

Quick Guide - Creating Posts in Jekyll

Creating a New Post in Jekyll

Basic Steps

Start the server with bundle exec jekyll s for a localhost.

  1. Navigate to your _posts folder:
    1
    
    cd _posts
    
  2. Create a new file with the following naming pattern:
    1
    
    YYYY-MM-DD-title.md
    

    For example: 2025-02-10-hellothere.md

Extended Front Matter Options

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
# Basic Options
title: Your Post Title
date: 2024-02-10
categories: [Main Category, Sub Category]
tags: [tag1, tag2]

# Additional Options
author: your_name
pin: true    # pins post to top
math: true   # enables math formatting
mermaid: true # enables mermaid diagrams
image:
  path: /path/to/image.jpg
  alt: Image description
---


#### Markdown Tips
```md
## Second Level
### Third Level
#### Fourth Level

To create code blocks, just then write bash, md for markdown, html, mermaid for mermaid etc. then close it with

Text Formatting

1
2
3
**Bold Text**
*Italic Text*
`inline code`

Code Blocks

1
2
def hello():
    print("Hello World!")
1
2
[Link Text](URL)
![Image Alt Text](/path/to/image.jpg)

Lists

1
2
3
4
5
1. First item
2. Second item
   - Sub-item
   - Another sub-item
3. Third item

Remember to check the post in your local server before pushing to GitHub!

Push to deploy to Github

Navigate to the github/workflows folder pages-deploy.yml

Its going to run a deployment script to push it to Github pages.

1
git status
1
git add .
1
git status

This should be green, so these files are “staged”.

1
git commit -m "feat(post):Hello There!"

Commiting and giving it a comment. Then push with

1
git push
This post is licensed under CC BY 4.0 by the author.