Help Center

Markdown for prompts

Format text with simple Markdown. It works in your Welcome message, Custom footer, and the assistant's responses shown to users.

Quick reference

  • Bold: **bold**
  • Italic: *italic*
  • Bold + italic: ***text***
  • Strikethrough: ~~text~~
  • Inline code: `code`
  • Lists: - item or 1. item
  • Link: [text](https://example.com)
  • Image: ![alt](https://example.com/image.png)

Headings

# H1
## H2
### H3

Lists

- Bullet one
- Bullet two
  - Nested bullet

1. First
2. Second

Links and images

[Visit our site](https://example.com)

![Alt text](https://example.com/image.png)

Code

Use backticks for inline code and triple backticks for blocks.

Here is some `inline code`.

```js
console.log("Hello");
```

Blockquotes

> Pro tip: Keep prompts concise.

Tables

| Plan | Price |
| ---- | ----- |
| Free | $0    |
| Pro  | $29   |

Horizontal rule

---

Where Markdown works

  • Welcome message (Settings → Appearance)
  • Custom footer (Settings → Appearance)
  • Assistant replies rendered to end‑users

Tips

  • Prefer short, scannable sections and bullets.
  • Use headings sparingly; H2 or H3 is usually enough.
  • Avoid raw HTML; it may be ignored for safety.
  • Test your message in the preview before publishing.