MarkDown
Markdown Cheatsheet
Headings
Use # for headings. The number of # indicates heading level.
# H1
## H2
### H3
#### H4
##### H5
###### H6
Text Styles
- Bold:
**bold text**or__bold text__ - Italic:
*italicized text*or_italicized text_ Strikethrough:~~strikethrough~~- Highlight:
==highlight==(not supported everywhere) - Subscript:
H~2~O - Superscript:
X^2^
Lists
- Unordered list: Use
-,*, or+
- Item 1
* Item 2
+ Item 3
- Ordered list:
1. First
2. Second
3. Third
Links and Images
- Link:
[link text](https://url.com) - Image: ``
Blockquote
> This is a blockquote.
Code
- Inline code:
`code`
- Fenced code block:
```
code block
```
Horizontal Rule
---
Tables
| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| Data 1 | Data 2 | Data 3 |
| Data 4 | Data 5 | Data 6 |
You can align text left, center, or right with colons:
| Left | Center | Right |
| :----|:------:|------:|
| L1 | C1 | R1 |
| L2 | C2 | R2 |
Task Lists
- [x] Completed task
- [ ] Incomplete task
Footnotes
Here's a sentence with a footnote. [^1]
[^1]: Footnote explanation.