-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40883 from ren-jones/patch-65
Create Send-and-format-chat-messages.md
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
docs/articles/new-expensify/chat/Send-and-format-chat-messages.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: Send and format chat messages | ||
description: Send chat messages and stylize them with markdown | ||
--- | ||
<div id="new-expensify" markdown="1"> | ||
|
||
Once you are added to a chat or create a new chat, you can send messages to other members in the chat and even format the text to include bold, italics, and more. | ||
|
||
{% include info.html %} | ||
Some chat rooms may have permissions that restrict who can send messages. In this case, you won’t be able to send messages in the room if you do not have the required permission level. | ||
{% include end-info.html %} | ||
|
||
To send a message, | ||
|
||
{% include selector.html values="desktop, mobile" %} | ||
|
||
{% include option.html value="desktop" %} | ||
1. Click any chat in your inbox to open it. | ||
2. Use the message bar at the bottom of the message to enter a message, add attachments, and add emojis. | ||
- **To add a message**: Click the field labeled “Write something” and type a message. | ||
- **To add an attachment**: Click the plus icon and select **Add attachment**. Then choose the attachment from your files. | ||
- **To add an emoji**: Click the emoji icon to the right of the message field. | ||
3. Press Enter on your keyboard or click the Send icon to send the message. | ||
{% include end-option.html %} | ||
|
||
{% include option.html value="mobile" %} | ||
1. Tap any chat in your inbox to open it. | ||
2. Use the message bar at the bottom of the message to enter a message, add attachments, and add emojis. | ||
- **To add a message**: Tap the field labeled “Write something” and type a message. | ||
- **To add an attachment**: Tap the plus icon and select **Add attachment**. Then choose the attachment from your files. | ||
- **To add an emoji**: Tap the emoji icon to the right of the message field. | ||
3. Tap the Send icon to send the message. | ||
{% include end-option.html %} | ||
|
||
{% include end-selector.html %} | ||
|
||
# Format text in a chat message | ||
|
||
You can format the text in a chat message using markdown. | ||
|
||
- _Italicize_: Add an underscore _ on both sides of the text. | ||
- **Bold**: Add two asterisks ** on both sides of the text. | ||
- ~~Strikethrough~~: Add two tildes ~~ on both sides of the text. | ||
- Heading: Add a number sign # in front of the text. | ||
- > Blockquote: Add an angled bracket > in front of the text. | ||
- `Code block for a small amount of text`: Add a backtick ` on both sides of the text. | ||
- Code block for the entire message: Add three backticks ``` at the beginning and the end of the message. | ||
|
||
</div> |