---
title: "Format dialogues in markdown"
url: https://perrotta.dev/2024/07/format-dialogues-in-markdown/
last_updated: 2024-07-16
---


I wanted to add a new kind of post to this blog, wherein I transcribe
conversations (a dialogue).

Initially, I formatted conversations like this:

- Alice: Hi
- Bob: Hello

In code:

```markdown
- Alice: Hi
- Bob: Hello
```

But that's just an ordinary list.

I thought about using em-dashes next, but they were meh (–).

Then the lazy web helped me with inspirations, and I settled with the following
format:

> **Alice**: Hi
>
> **Bob**: Hello

In code:

```markdown
> **Alice**: Hi
>
> **Bob**: Hello
```

It combines blockquotes with bolding the speaker. Simple, yet effective.

**Source**: https://blog.jakelee.co.uk/markdown-conversation-formatting/

