# Markdown Cheatsheet

**First and foremost we start with** 
### - Heading and level of heading
- There are 6 levels of headings(1,2,3,4,5,6).
- the number of hashes `#` must be preceding the heading text.
- The level of heading you want then the number of hashes equal to the level of heading(For ex heading level can be:- 1,2,3,4,5,6)
- There must be space between the last `#` of the preceding hashes and Heading text.

```
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

``` 
**Preview of Levels of Headings:-**

![Screenshot (422).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658563571364/DOxEnUAJR.png align="left")

### - Bold

```
**Bold** 
or Another way
__Bold__
``` 

**Preview of Bold:-**


![Screenshot (427).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566840111/YQUZ42tGa.png align="left")

### - Italic


```
*italic*
or Another way
_italic_
``` 
**Preview of Italic:-**


![Screenshot (428).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566874289/pT3qCjKhH.png align="left")

### - Strikethrough

```
~~text~~
``` 

**Preview of Strikethrough:-**


![Screenshot (429).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566961584/7Hv6F6Qy0.png align="left")
 
### - List

- **Ordered List**

The ordered list can be used as `number` then `.` then space then `text`.

```
1. One
2. Two
3. Three
        1. Inside three
        2. Inside three
```

**Preview of Ordered List:-**


![Screenshot (430).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566900922/9UCbzgMzP.png align="left")

- **Unordered List**

The unordered list can use asterisks `*` , minuses`-` and pluses`+`.


```
* First asterisks
- Second minuses
+ Third pluses
        - one
        * two
``` 

**Preview of Unordered Lists:-**


![Screenshot (431).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566941753/46N4duNZg.png align="left")


### - Links

```
// Syntax :- [Link Text Here](URL)
[Google](https://www.google.co.in/)
``` 

**Preview of Links:-**


![Screenshot (432).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658566998385/17JdWvqxO.png align="left")

### - Link Images


```
// Syntax :- ![Text if image not loaded](Url)
![Test Image](https://images.pexels.com/photos/4584830/pexels-photo-4584830.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1)
``` 

**Preview of Link Image:-**


![Screenshot (434).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658567154841/5p4tvZMH6.png align="left")

### - Code Snippet



![Screenshot (437).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658567290972/9Sdvr-nmQ.png align="left")

you can also highlight keywords in your text by using a single backtick preceding the keyword and ending the keyword.

**Output:-**


![Screenshot (435).png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658567203494/oOj6aiXhL.png align="left")


I hope you find this helpful. Go ahead and try this on your own.😀
**If you like this then share it and give this blog a big thumbs up.**


