Markdown Guide
Use Markdown to format your posts, messages, and bios.
Headings
# Heading 1
## Heading 2
### Heading 3
Text Formatting
| Syntax | Result |
|---|---|
**bold** | bold |
*italic* | italic |
~~strikethrough~~ | |
`inline code` | inline code |
Links & Images
[Link Text](https://example.com)

Code Blocks
```language
your code here
```
Supported languages: 6502, basic, c, python, javascript, php, and more.
Blockquotes
> This is a blockquote.
> It can span multiple lines.
This is a blockquote.
It can span multiple lines.
Lists
Unordered
- Item one
- Item two
- Item three
Ordered
1. First item
2. Second item
3. Third item
Horizontal Rules
---