Find answers to your technical questions and learn how to use our products
Search suggestions:
Find answers to your technical questions and learn how to use our products
Search suggestions:
above the Message field displays the message formatting options. You can then click an option icon to enable formatting. To disable it, click the icon again.
|
Icon
|
Name
|
Description
|
|---|---|---|
![]() |
Bold
|
To highlight the text in bold.
|
![]() |
Underline
|
To underline the text.
|
![]() |
Italic
|
To highlight the text in italics.
|
![]() |
Strikethrough
|
To cross out the text.
|
![]() |
Numbered list
|
To organize the text in a numbered list.
|
![]() |
Bulleted list
|
To organize the text in a bulleted list.
|
![]() |
Increase indent
|
To increase the indent of numbered or bulleted lists.
|
![]() |
Decrease indent
|
To decrease the indent of numbered or bulleted lists.
|
![]() |
Insert link
|
To insert a link to the text.
|
![]() |
Insert horizontal line
|
To insert a horizontal line.
|
|
Task
|
Syntax
|
Example
|
|---|---|---|
|
Highlight text in bold.
|
Two asterisk (*) characters before and after the text.
|
**bold**
|
|
Highlight text in italics.
|
One asterisk (*) character before and after the text.
|
*italic*
|
|
Highlight text in bold and italic.
|
Three asterisk (*) characters before and after the text.
|
***bold and italic***
|
|
Strikethrough text.
|
Two tilde (~) characters before and after the text.
|
~~strikethrough~~
|
|
Underline text.
|
Two underscore (_) characters before and after the text.
|
__underline__
|
|
Insert a horizontal line.
|
Three dash (-) characters on a new line.
|
---
|
|
Format text as a quote.
|
One angle bracket (>) character followed by the space character before the text.
|
> quote
|
|
Organize text in an unordered list.
|
One asterisk (*) character followed by the space character before the text.
The Markdown syntax changes to the visual representation of the list after you add space.
|
* list item
|
|
Organize text in an ordered list.
|
The
1digit followed by the dot (.) and space characters before the text.
The Markdown syntax changes to the visual representation of the list after you add space.
|
1. list item
|
|
Create a hyperlink.
|
A text, enclosed in parenthesis, followed by a URL address enclosed in brackets.
|
(link)[example@address.com]
|
|
Format text as code.
|
One backtick (`) character before and after the text.
|
`code snippet`
|