Markdown is a way to style text on the web. You control the display of the document; forming words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown.
Markdown is just regular text with a few non-alphabetic characters thrown in, like #
or *
We can categorize Markdown Syntax as below:
Headers Headers
# Heading 1 - The <h1> tag ## Heading 2 - The <h2> tag ### Heading 3 - The <h3> tag #### Heading 4 - The <h4> tag ##### Heading 5 - The <h5> tag ###### Heading 6 - The <h6> tag
Lists Lists
We can display ordered list and unordered list with markdown.
Ordered List Ordered List
* Item 1 * Item 2 * Item 2.1 * Item 2.2 * Item 3 * Item 4 * Item 4.1 * Item 4.2
Unordered Unordered
1. Item 1 2. Item 2 3. Item 3 * Item 3.1 * Item 3.2
Images Images

Here,
- ![Hello World] is the alt text for our image.
- And (https://maheshwaghmare.com/wp-content/uploads/2020/02/cropped-mahesh-waghmare-portfolio.png) shows our image with URL.
Links Links
[My GitHub Repository](http://github.com/maheshwaghmare/)
Emphasis Emphasis
Bold Bold
**bold** __This will also be bold__
Italic Italic
*italic* _This will also be italic_
We can combine bold and italic as below:
*Italic text with **bold** text.*
Blockquotes Blockquotes
Lorem ipsum: > This is a simple quote.