Markdown Guide
(updated )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 codeusing backticksStrikethroughusing~~text~~
Lists
Unordered:
- Item one
- Item two
- Item three
Ordered:
- First item
- Second item
- Third item
Links and Images
Links: Cloudflare Workers
Images: 
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.