rohani.dk
← Back

This is how you write an experiment

27 March 2026 · meta

To add a new experiment or note, create a new .md file in src/content/experiments/.

The filename becomes the URL slug. For example, my-rag-experiment.md will be available at rohani.dk/experiments/my-rag-experiment.

Frontmatter

Each file needs this header:

---
title: "Your title here"
date: 2026-03-27
description: "Optional. Used for SEO and link previews."
tags: ["optional", "tags"]
---

Writing

After the frontmatter, write in standard Markdown.

Bold, italic, code, headings, lists, and code blocks all work.

# Example code block
def hello():
    return "works fine"

Delete this file when you write your first real one.