empeiria on Nostr: # Markdown Cheatsheet ## Headers # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 ## ...
# Markdown Cheatsheet
## Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
## Emphasis
*italic* or _italic_
**bold** or __bold__
**_bold italic_** or __*bold italic*__
~~strikethrough~~
## Lists
### Unordered
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
### Ordered
1. First item
2. Second item
3. Third item
## Links
[Link text](https://www.example.com)
[Link with title](https://www.example.com "Title text")
## Images
![Alt text]( )
![Alt text]( "Optional title")
## Blockquotes
> This is a blockquote
>
> It can span multiple lines
## Code
Inline `code` has back-ticks around it.
```
Code blocks
are fenced
by three back-ticks
```
## Horizontal Rule
---
## Tables
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1, Column 1 | Row 1, Column 2 | Row 1, Column 3 |
| Row 2, Column 1 | Row 2, Column 2 | Row 2, Column 3 |
## Task Lists
- [x] Completed task
- [ ] Uncompleted task
## Footnotes
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
## Escaping Characters
\*This text is surrounded by literal asterisks\*
## Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
## Emphasis
*italic* or _italic_
**bold** or __bold__
**_bold italic_** or __*bold italic*__
~~strikethrough~~
## Lists
### Unordered
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
### Ordered
1. First item
2. Second item
3. Third item
## Links
[Link text](https://www.example.com)
[Link with title](https://www.example.com "Title text")
## Images
![Alt text]( )
![Alt text]( "Optional title")
## Blockquotes
> This is a blockquote
>
> It can span multiple lines
## Code
Inline `code` has back-ticks around it.
```
Code blocks
are fenced
by three back-ticks
```
## Horizontal Rule
---
## Tables
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1, Column 1 | Row 1, Column 2 | Row 1, Column 3 |
| Row 2, Column 1 | Row 2, Column 2 | Row 2, Column 3 |
## Task Lists
- [x] Completed task
- [ ] Uncompleted task
## Footnotes
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
## Escaping Characters
\*This text is surrounded by literal asterisks\*