Markdown is a lightweight markup language that lets you format text using simple, readable syntax. Here's a quick guide to get you started.
To make text stand out, you can use bold or italic formatting:
**bold text** or __bold text__ → bold text*italic text* or _italic text_ → italic text***bold and italic*** → bold and italicMarkdown supports both ordered and unordered lists.
Use asterisks, plus signs, or hyphens followed by a space:
* First item
* Second item
* Third item
Result:
Simply use numbers followed by periods:
1. First step
2. Second step
3. Third step
Result:
To add images, use this syntax: 
Example:

The alt text (inside square brackets) describes the image for accessibility and appears if the image fails to load. The URL (inside parentheses) points to the image location.
Creating links works similarly to images, just without the exclamation mark:
[Click here](https://example.com)
Result: Click here
| Element | Syntax | Example |
|---|---|---|
| Bold | **text** |
bold |
| Italic | *text* |
italic |
| Unordered list | * item |
• item |
| Ordered list | 1. item |
1. item |
| Image |  |
(image) |
| Link | [text](https://example.com) |
text |
That covers the essentials! These elements will handle most of your formatting needs in any markdown-enabled chat builder.