This is a simple markdown-based blog built with minimal dependencies.

Features

  • Markdown parsing
  • Simple CSS styling
  • Code block support
  • Easy to maintain

Code Example

Here's a simple JavaScript example:

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('World'));

And here's some inline code: const x = 42;

Lists

  • First item
  • Second item
  • Third item
  1. Numbered item one
  2. Numbered item two

Blockquote

This is a blockquote. It can contain multiple lines
and will be styled appropriately.

Enjoy writing!