Markdown Cheat Sheet
Text Formatting
| Style | Syntax | Example |
|---|---|---|
| Bold | **text** |
bold |
| Italic | *text* |
italic |
| Code | `code` |
code |
| Strikethrough | ~~text~~ |
Links
[Link text](https://example.com)
[[Internal Page Link]]
Images

Lists
Unordered:
- Item one
- Item two
- Nested item
Ordered:
1. First
2. Second
3. Third
Code Blocks
```javascript
function hello() {
console.log("Hello, world!");
}
```
Admonitions
> [!NOTE]
> A note with a title
> [!WARNING]
> Something important
> [!TIP]
> A helpful tip
> [!DANGER]
> Caution required
Footnotes
Reference[^1] or with a label[^label].
[^1]: First footnote definition
[^label]: A labelled footnote
Task Lists
- [x] Completed task
- [ ] Pending task
- [ ] Another task
Tables
| Left | Center | Right |
|------|--------|-------|
| A | B | C |
| D | E | F |