Skip to main content

Rich text

Rich text fields support Markdown, either typed directly or applied with the formatting toolbar above the field.

Media​

The paper clip icon in the toolbar attaches images, videos, and PDFs.

Mentions​

Mention a user with @ followed by their name — see User mentions.

Code​

Inline code uses single backticks, e.g. `inline code`.

A fenced block, for longer snippets, uses triple backticks with an optional language identifier for syntax highlighting:

```javascript
function helloWorld() {
console.log("Hello, world!");
}
```

Over 100 languages are supported, including javascript, typescript, kotlin, java, csharp, golang, graphql, json, bash, and powershell — common aliases like js, c#, go, and ps also work.

Lists, blockquotes, and headings​

Standard Markdown: - for an unordered list, 1. for ordered, > for a blockquote, and # through ###### for headings.

Bold and italic​

**bold** and *italic*.