Markdown Guide
Snakk uses markdown for formatting posts and replies. Here's a quick reference.
Text formatting
| Syntax | Result |
|---|---|
**bold** |
bold |
*italic* |
italic |
~~strikethrough~~ |
|
`inline code` |
inline code |
||spoiler|| |
Hidden until clicked |
Headings
## Heading 2
### Heading 3
#### Heading 4
Links
[Link text](https://example.com)
Images
Drag an image into the editor to upload it, or use markdown syntax:

Lists
- Unordered item
- Another item
1. Ordered item
2. Another item
Blockquotes
> This is a quote
> It can span multiple lines
Code blocks
Use triple backticks with an optional language name for syntax highlighting:
```javascript
function hello() {
console.log("Hello, world!");
}
```
Supported languages include JavaScript, TypeScript, Python, C#, Java, Go, Rust, HTML, CSS, SQL, Bash, and many more.
Tables
| Column 1 | Column 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
Task lists
- [x] Completed task
- [ ] Incomplete task
Horizontal rule
---