Hello — this is a test post, here to prove the rendering pipeline works. Everything below is written in plain Markdown.
## Text
Regular copy with **bold**, *italic*, `inline code`, and a [link](https://kaijensen.com).
- a bullet - another one - and a nested one
1. first 2. second
> A blockquote, for quoting things.
## Code
```ts export function p99(samples: number[]): number { const sorted = [...samples].sort((a, b) => a - b) return sorted[Math.floor(sorted.length * 0.99)] ?? 0 } ```
## Tables
| percentile | latency | | ---------- | ------- | | p50 | 0.8 ms | | p99 | 4.2 ms |
## Diagrams
Fenced blocks tagged `mermaid` are drawn as diagrams:
```mermaid flowchart LR A[Client] --> B{Router} B -->|hit| C[Cache] B -->|miss| D[(Store)] C --> E[Response] D --> E ```
```mermaid sequenceDiagram participant U as User participant E as Edge participant S as Service U->>E: GET /posts/hello-world E->>S: fetch S-->>E: 200 E-->>U: rendered ```
## Images

---
That's the lot.