Leon . Kang
Back to articles
πŸ“ Coding β€’ 1/1/2026 β€’ 5 min read

Example Guide: How to Write a Blog Post

Introduction

This is an example post to demonstrate the style and structure of blog articles for this project.

Frontmatter

The metadata above determines how the post appears in the list and sidebar.

  • category: Must be one of the supported categories (e.g., Coding, Design, Lifestyle).
  • tags: Use hashtags like #React.

Supported Features

Code Blocks

We support syntax highlighting for various languages.

interface User {
	id: number;
	name: string;
}

const getUser = (id: number): User => {
	return { id, name: "John Doe" };
};

Lists

  • Item 1
  • Item 2
    • Sub-item A
    • Sub-item B

Blockquotes

"Code is like humor. When you have to explain it, it’s bad." – Cory House

Images

You can include images using standard Markdown syntax.

Tech Nomad Setup

Conclusion

Follow this template to ensure consistency across the blog.