README

1 min read

Blog Posts Directory

This directory contains Markdown files that will be automatically converted to blog posts.

Creating a New Post

  1. Create a new .md file in this directory
  2. 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... ```

  1. Write your content using Markdown syntax
  2. 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.