Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Send-and-format-chat-messages.md #40883

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading