Slack Markdown: Text Formatting Guide
Slack uses its own flavour of markdown called mrkdwn. The syntax differs from standard Markdown in a few important ways, most notably that bold uses a single asterisk instead of double. Use the reference below for copy-ready examples.
| Format | Syntax | Result |
|---|---|---|
| Bold | *text* | Bold text |
| Italic | _text_ | Italic text |
| Strikethrough | ~text~ | Strikethrough text |
| Inline Code | `code` | Monospaced code |
| Code Block | ```code``` | Multi-line code block |
| Block Quote | > text | Indented quote |
| Ordered List | 1. item | Numbered list item |
| Unordered List | - item | Bulleted list item |
Slack Quirks
- Slack uses non-standard markdown.
*single asterisk*produces bold, not italic. - Standard Markdown links
[text](url)are not supported. Use<url|text>instead. - Code blocks do not support language-specific syntax highlighting.
- Strikethrough uses a single tilde
~text~instead of double~~text~~.
Need to write longer markdown? Try the Markdown Editor for a live preview as you type.