# Formatting your messages

### Content Types Supported

Glue messages support the following:

* **Attachments:** Share files, images, documents
* **Emojis & reactions:** Express tone and reactions
* **Links:** URLs automatically become links
* **Mentions:** Notify users or groups
* **Quote replies:** Reference specific messages
* **@Glue AI:** Ask for help, summaries, or information

***

### Text Formatting

Glue formatting uses Markdown-style syntax.

#### Basic Text

| Style    | How to write    |
| -------- | --------------- |
| **Bold** | `**bold text**` |
| *Italic* | `*italic text*` |
| `Code`   | `` `code` ``    |

#### Structured Content

<figure><img src="/files/ZAR4TbLQvg9wxTAfDkns" alt="" width="375"><figcaption></figcaption></figure>

| Structure                       | Syntax                                                                           |
| ------------------------------- | -------------------------------------------------------------------------------- |
| Bulleted lists                  | `- item` or `* item`                                                             |
| Numbered lists                  | `1. item`                                                                        |
| Headings                        | `# Heading level 1 (h1)`, `## Heading level 2 (h2)` , `### Heading level 3 (h3)` |
| Divider (horizontal line break) | `---`                                                                            |
| Blockquote                      | `> your text here`                                                               |

{% hint style="info" %}
**Tip:** Always include a space after heading markers (e.g., `## Heading text`).
{% endhint %}

{% hint style="warning" %}
**Note:** There is currently not support for sending formatted tables in a message. Only Glue AI can send a table.
{% endhint %}

### Block & Inline Code

For sharing code snippets, use triple backticks:

` ```console.log("Hello world")``` `

will appear as

```
console.log("Hello world")
```

{% hint style="success" %}
Pasting formatted text from another app will carry the formatting over to Glue!
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.glue.ai/conversations/formatting-your-messages.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
