README
1 min read
Blog Posts Directory
This directory contains Markdown files that will be automatically converted to blog posts.
Creating a New Post
- Create a new
.mdfile in this directory - Add frontmatter at the top of the file:
```markdown
title: "Your Post Title" description: "A brief description of your post" date: "2024-01-15"
Your content here... ```
- Write your content using Markdown syntax
- The post will automatically appear on the blog page
Frontmatter Fields
- title (required): The title of your blog post
- description (optional): A brief description shown in the blog listing
- date (required): Publication date in YYYY-MM-DD format
Markdown Features
- Headers, lists, links, images
- Code blocks with syntax highlighting
- Tables (GitHub Flavored Markdown)
- Blockquotes
- And more!
Example
See example-post.md for a complete example.