Minimal Notes
All posts

Hello World: Writing with Markdown

1 min readBy Ada Lovelace
#meta#markdown#nextjs

Welcome! This blog is built with Next.js + Markdown.

How to write a new post

  1. Create a new file in content/posts/, e.g. my-new-post.md
  2. Add frontmatter at the top:
---
title: "My New Post"
date: "2026-09-24"
author: "Your Name"
excerpt: "A short summary shown on the homepage."
tags: ["notes", "ideas"]
---

Your content here...
  1. Commit & push. Vercel / Cloudflare Pages rebuilds automatically. Done.

Markdown features

  • GitHub Flavored Markdown (tables, task lists, strikethrough)
  • Code blocks with syntax-friendly styling
  • Reading time auto-calculated
export function hello(name: string) {
  return `Hello, ${name}!`;
}
  • Write post
  • Commit
  • Share with the world
Feature Supported
Tables Yes
Lists Yes
Quotes Yes

Minimalism is not the absence of design. It's the absence of noise.