Format Messages Using Markdown
Hischool supports Markdown formatting in conversations.
Markdown allows you to:
- Emphasize text
- Create lists
- Add links
- Format code
- Structure longer messages
Formatting improves clarity and readability in both direct and group conversations.
Basic Text Formatting
Section titled “Basic Text Formatting”To make text bold:
**bold text**
Italic
Section titled “Italic”To italicize text:
*italic text*
Bold and Italic
Section titled “Bold and Italic”***bold and italic***
Strikethrough
Section titled “Strikethrough”~~strikethrough text~~
Unordered List
Section titled “Unordered List”- Item one- Item two- Item threeOrdered List
Section titled “Ordered List”1. First2. Second3. ThirdTo add a clickable link:
[Open Hischool](https://hischool.world)Code Formatting
Section titled “Code Formatting”Inline Code
Section titled “Inline Code”Use backticks for inline code:
const example = true
Code Block
Section titled “Code Block”Use triple backticks for multi-line code:
<pre>function greet() {console.log(“Hello”);}</pre>Code blocks are useful for programming discussions.
Blockquotes
Section titled “Blockquotes”To quote text:
> This is a quoted messageBlockquotes are useful for highlighting references or previous statements.
Combining Markdown with Mentions
Section titled “Combining Markdown with Mentions”You can combine formatting with mentions:
Mentions will still trigger notifications, depending on settings.
See:
→ Mention Users
Formatting in Group Conversations
Section titled “Formatting in Group Conversations”Formatting is especially useful in group discussions:
- Use bold for key points.
- Use lists for action items.
- Use code blocks for technical explanations.
- Use quotes to reference previous messages.
Clear formatting improves collaboration.
Limitations
Section titled “Limitations”Depending on configuration:
- Some advanced Markdown features may not be supported.
- HTML tags may be sanitized.
- Scripts and unsafe content are not allowed.
- Formatting may be simplified in email notifications.
Security measures prevent malicious formatting.
Best Practices
Section titled “Best Practices”- Use formatting to improve clarity, not decoration.
- Avoid excessive bold or large blocks of formatted text.
- Keep messages readable and structured.
- Preview your message before sending (if supported).
Common Issues
Section titled “Common Issues”My formatting is not working
Section titled “My formatting is not working”- Check for correct syntax.
- Ensure proper spacing.
- Make sure special characters are used correctly.
The formatting looks different in email
Section titled “The formatting looks different in email”Email notifications may display simplified formatting.
Code formatting is not aligned
Section titled “Code formatting is not aligned”Make sure you use triple backticks for multi-line code blocks.