formatting your messages.md

Formatting your messages

Content Types Supported

Glue messages support the following:


Text Formatting

Glue formatting uses Markdown-style syntax.

Basic Text

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

Structured Content

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

Block & Inline Code

For sharing code snippets, use triple backticks:

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

will appear as

console.log("Hello world")