Okay, here's a demo output to test my markdown capabilities.
- Ordered List:
- First item
- Second item
- Nested item 1
- Nested item 2
- Bullet inside ordered list
- Another bullet
- Third item
- Bulleted List:
- First bullet
- Second bullet
- Numbered list inside bullet
- Another numbered item
- Third bullet
-
Nested Lists (Mixed):
- Level 1
- Level 2 (Numbered)
- Level 3 (Bullet)
- Level 4 (Numbered)
- Level 5 (Bullet)
- Level 6 (Bullet)
- Level 5 (Bullet)
- Level 4 (Numbered)
- Level 3 (Bullet)
- Level 2 (Numbered)
- Level 1
Code:
Here is an example of inline code.
Code Block:
def hello_world():
print("Hello, world!")
Bold, Italics, Strikethrough, and Underline:
- This is bold text.
- This is italicized text.
This is strikethrough text.- This is underlined text.
Links:
Blockquotes:
This is a blockquote. It can span multiple lines and is used to highlight a section of text.
Nested blockquote
Even deeper!
Hey <@UC123123>, check this out!
Preformatted text:
This is a preformatted text block.
It preserves whitespace and newlines.
Useful for displaying code or configuration.
Horizontal Rule:
Tables (Note: Tables are not directly supported in Slack markdown, but here's how you might format it with spacing):
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Row 1 | Value 1 | Data 1 |
| Row 2 | Value 2 | Data 2 |
Emojis: 😄 🚀 🎉
- Completed task
- Incomplete task
Combination:
This is bold and italicized.
More code examples:
javascript
function anotherExample() {
return "JavaScript code";
}
SELECT * FROM stuff WHERE thing = TRUE;
Final bullet to make sure it's really long!
- Last one!