# Markdown: The text-markup beast.

# What's Markdown good for? 
Markdown is an easy way to take down **notes**, **create content** for a website, **create readme** in your github. Markdown is used for creating groceries list to a big production content creation.

Here are some most helpful and common tags (elements) of MarkDown:

# Tags
## 1. Headings
Syntax:
````
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
````
Output:

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

>note: Putting an space after the '#' is necessary, otherwise the formatting will not work.

## 2. Bold
Syntax:
````
**bold text**

__bold text__
````
Output:

**bold text**

__bold text__

## 3. Italics
Syntax:
````
*Italicized text*

_Italicized text_
````
Output:

*Italicized text*

_Italicized text_

## 4. Quotes
Syntax:

### Quote with single paragraph.
````
>The quote will go here.
```` 
Output:
>The quote will go here.

### Quote with multiple paragraphs.
````
>This is the first para.
>
>This is the second para.
````
Output:

>This is the first para.
>
>This is the second para.

-----

>**NOTE**: If we do not put the ">" in between of two para elements, it'll come in a single paragraph.

### Nested  quotes
````
>This is the first para.
>
>>This is the nested para.
````
Output:

>This is the first para.
>
>>This is the nested para.

### Quotes with Other Elements
````
>We can make text **bold**.
>
>-Can add list.
````
Output:

>We can make text **bold**.
>
> - Can add list.

### Nested  quotes
````
>This is the first para.
>
>>This is the nested para.
````
Output:

>This is the first para.
>
>>This is the nested para.

## 5. Ordered lists

Syntax:
````
1. Item 1
2. Item 2
````
Output:

1. Item 1
2. Item 2

### Nested Ordered lists

Syntax:
````
1. Item 1
2. Item 2
  1. item 2.1
  2. item 2.2
````
Output:

1. Item 1
2. Item 2
  1. item 2.1
  2. item 2.2

## 6. Unordered lists

Syntax:
````
- Item 1
- Item 2
* item 3
* item 4
````
Output:

- Item 1
- Item 2
* item 3
* item 4

### Nested Unordered lists

Syntax:
````
- Item 1
- Item 2
  - item 2.1
  - item 2.2
````
Output:

- Item 1
- Item 2
  - item 2.1
  - item 2.2

## 7. Code Blocks
### Inline Code

Syntax:
````
`inline code`
````
Output:
`inline code`

### Multi-line code

Syntax:

**Multi line code is inserted by ```` in the beginning and end of the code.**

Output:
````
This 
is 
Multi-Line
Code
````

## 8. Links

Syntax:
````
[LCO](web.learncodeonline.in)
````
Output:
[LCO](https://courses.learncodeonline.in)

## 9. URLs and Email Addresses

Syntax:
````
<http:// www.google.com>
<aryanamdev08@gmail.com>

````
Output:

<http://www.google.com>
, <aryanamdev08@gmail.com>

## 10. Images

Syntax:
````
![Mountain img](https://images.pexels.com/photos/933054/pexels-photo-933054.jpeg?cs=srgb&dl=pexels-joyston-judah-933054.jpg&fm=jpg)

````
Output:

![Mountain img](https://images.pexels.com/photos/933054/pexels-photo-933054.jpeg?cs=srgb&dl=pexels-joyston-judah-933054.jpg&fm=jpg)

**Here is all what i had about Markdown and i'll come up with more such blogs.**










