Add MD sheet
This commit is contained in:
parent
86681d7687
commit
d42bab5522
|
|
@ -0,0 +1,107 @@
|
|||
# Markdown Cheet Sheet
|
||||
## Simple sheet with explanation here [Markdown guide CS](https://www.markdownguide.org/cheat-sheet/)
|
||||
```
|
||||
# Headers
|
||||
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
#### H4
|
||||
##### H5
|
||||
###### H6
|
||||
|
||||
# Emphasis
|
||||
|
||||
*italic*
|
||||
**bold**
|
||||
***bold and italic***
|
||||
|
||||
# Lists
|
||||
|
||||
## Unordered
|
||||
|
||||
- Item 1
|
||||
- Item 2
|
||||
- Item 3
|
||||
|
||||
## Ordered
|
||||
|
||||
1. Item 1
|
||||
2. Item 2
|
||||
3. Item 3
|
||||
|
||||
# Links
|
||||
|
||||
[link text](https://www.example.com)
|
||||
|
||||
# Images
|
||||
|
||||

|
||||
|
||||
# Code
|
||||
|
||||
`inline code`
|
||||
|
||||
|
||||
# Blockquotes
|
||||
|
||||
> quoted text
|
||||
|
||||
# Horizontal Rule
|
||||
|
||||
---
|
||||
```
|
||||
|
||||
# Example
|
||||
|
||||
# Headers
|
||||
|
||||
# H1
|
||||
## H2
|
||||
### H3
|
||||
#### H4
|
||||
##### H5
|
||||
###### H6
|
||||
|
||||
# Emphasis
|
||||
|
||||
*italic*
|
||||
**bold**
|
||||
***bold and italic***
|
||||
|
||||
# Lists
|
||||
|
||||
## Unordered
|
||||
|
||||
- Item 1
|
||||
- Item 2
|
||||
- Item 3
|
||||
|
||||
## Ordered
|
||||
|
||||
1. Item 1
|
||||
2. Item 2
|
||||
3. Item 3
|
||||
|
||||
# Links
|
||||
|
||||
[link text](https://www.example.com)
|
||||
|
||||
# Images
|
||||
|
||||

|
||||
|
||||
# Code
|
||||
|
||||
`inline code`
|
||||
|
||||
|
||||
# Blockquotes
|
||||
|
||||
> quoted text
|
||||
|
||||
# Horizontal Rule
|
||||
|
||||
---
|
||||
|
||||
|
||||
Loading…
Reference in New Issue