Message formatting

Last Updated : Jun 10, 2024 |
Prolog information
Use message formatting to improve message clarity and structure in. Clicking the Format message icon 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.
You can also use the keyboard shortcuts to format your messages. For example, pressing Ctrl + B enables the bold font. To see the shortcut for an option, hover over its icon.
The following table lists the message formatting options:
Icon
Name
Description
the Bold icon
Bold
To highlight the text in bold.
the Underline icon
Underline
To underline the text.
the Italic icon
Italic
To highlight the text in italics.
the Strikethrough icon
Strikethrough
To cross out the text.
the Numbered list icon
Numbered list
To organize the text in a numbered list.
the Bulleted list icon
Bulleted list
To organize the text in a bulleted list.
the Increase indent icon
Increase indent
To increase the indent of numbered or bulleted lists.
the Decrease indent
Decrease indent
To decrease the indent of numbered or bulleted lists.
the Insert link icon
Insert link
To insert a link to the text.
the Insert horizontal line icon
Insert horizontal line
To insert a horizontal line.

Message formatting with Markdown syntax

Prolog information
supports basic Markdown syntax. You can use Markdown syntax when typing your message to format it. For example, placing two asterisks (**) before and after a text formats that text as bold.
The following table lists the supported formatting options:
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 1 digit 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`