Getting Started with ptanq

2025-01-20


How ptanq works

Every post on this blog is a markdown file stored in content/posts/. When the site builds, Next.js reads those files and generates static HTML pages.

The writing workflow

  1. Open the editor at /editor
  2. Write your post using the rich-text toolbar
  3. Click Save to write the markdown file locally
  4. Commit and push to deploy

Markdown features

You get all the usual markdown goodies:

  • Bold and italic text
  • inline code and code blocks
  • Blockquotes and lists
  • Headings at multiple levels
const greeting = "Hello from ptanq!";
console.log(greeting);

"The best way to learn is to build something." — Someone wise, probably.

That's it. Simple by design.