Markdown Cheat Sheet

The Must-know thin for any developer.

Overview

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Nearly all Markdown applications support the basic syntax outlined in the original Markdown design document.

Headings

To create a heading, add number of signs (#) in front of a word or phrase. It works similar to Html h1 to h6, Only change is here You will (#).

Syntax

# My heading 1
## My heading 2
### My heading 3
#### My heading 4
##### My heading 5
###### My heading 6
###### My heading 7

Rendered Output

image.png

Bold

For Making Any Text bold.

Syntax

  Hello **Learner**have a nice day

Rendered Output

Hello Learnerhave a nice day

Italic

For Making Any Text or sentence bold.

Syntax

*Hello Am Abhihsek*

Rendered Output

Hello Am Abhishek

Unorder List

Syntax

 List
  - one
  - two
  - three

Rendered Output

image.png

order List

Syntax

 order List
  1. one
  2. two 
  3. three

Rendered Output

image.png

Syntax

   [Click on](https://google.com "click")

Rendered Output image.png

Syntax

      ![](img/Abhi.png)

Rendered Output

image.png