Writing Posts in Markdown

This guide shows you how to create blog posts using markdown.

Frontmatter

Every markdown post should start with frontmatter:

---
title: Your Post Title
date: 2025-01-02
description: A brief description
tags: [tag1, tag2]
---

Formatting

Text Styles

  • Bold text using **text**
  • Italic text using *text*
  • Inline code using backticks
  • Strikethrough using ~~text~~

Lists

Unordered:

  • Item one
  • Item two
  • Item three

Ordered:

  1. First item
  2. Second item
  3. Third item

Links and Images

Links: Cloudflare Workers

Images: ![Alt text](/images/example.jpg)

Blockquotes

This is a blockquote. Use it for citations or emphasis.

Tables

Feature Supported
Markdown Yes
HTML Yes
Images Yes

That's It!

Save your file in content/posts/ and run npm run build to process it.