This cheat sheet provides a quick reference for Markdown syntax. For explanations of flavors and philosophy, see the main Markdown note.
Text Formatting
# Heading 1
## Heading 2
### Heading 3
**Bold text** or __Bold text__
*Italic text* or _Italic text_
~~Strikethrough text~~
`inline code`
Lists
Unordered List
- Item A
- Item B
- Sub-item 1
- Sub-item 2
Ordered List
1. First item
2. Second item
3. Third item
Task List (GFM)
- [x] Completed task
- [ ] Incomplete task
Links and Images
<!-- Link -->
[Link text](https://www.example.com "Link title")
<!-- Image -->

Code Blocks
Use triple backticks with an optional language identifier.
```python
def my_function():
return "Hello"
```
Blockquotes
> This is a blockquote.
> It can span multiple lines.
Tables (GFM)
| Header 1 | Header 2 | Header 3 |
|:---------|:--------:|---------:|
| Align L | Center | Align R |
| Cell 1 | Cell 2 | Cell 3 |
Miscellaneous
Horizontal Rule
---
Footnotes
Here is some text with a footnote.[^1]
[^1]: This is the footnote's content.
Admonitions (Common Extension)
> [!note]
>
> A note with some information.
> [!warning]
>
> A warning that requires attention.