Markdown Cheatsheet

Markdown Cheatsheet

I have presented the Entire Markdown Cheatsheet in this blog Go and Check this out.

All Developers, Administrators, Business Analyst, and much other domain person wants to showcase their skill to User or Clients, many of them use tools, and many other don't use anything, But here Markdown comes into play to make a clear picture.

I know many of you have might be thinking about what is Markdown, how to use and anything like that. Let's come to the point without discussing anything.

What is Markdown

Markdown is a free markup language you can use to format plain text and generate different outputs. It simply means a readme file that showcases all your information regarding what you have done in that project. On top of that, you might often see README.md on Github

Let's get started with a quick Cheatsheet on basic syntax and commands.

Headings

# H1 Heading 1

## H2 Heading 2

### H3 Heading 3

#### H4 Heading 4

##### H5 Heading 5

###### H6 Heading 6

Output :

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Text Formatting & Decorations

**Bold**

_Italic_

~~Strikethrough-text~~

**_Strong emphasized text_**

Output:

Bold

Italic

Strikethrough-text

Strong emphasized text


List

Unorder List

- Unordered lists
  - list 1
  - list 2

Output:

  • Unordered lists
    • list 1
    • list 2

Ordered List

 Ordered lists
  1. list one
  2. list two

Output:

Ordered lists

  1. list one
  2. list two

Code Snippet

Inline Code

`I Write Code`

Output:

I Write Code

Block Code

*{
  margin: 0;
  padding: 0;
}

Output:

*{
  margin: 0;
  padding: 0;
}

Link

[My Blog Website](https://deep9110.hashnode.dev/ "Deep's Blog")

Output:

My Blog Website

Image

![LCO](https://learncodeonline.in/mascot.png "This Image is present in this link")

Output:

LCO

Table

| Header       | Header       |
| ------------ | ------------ |
| Content row 1| Content row 1 |
| Content row 2 | Content row 2 |

Output:

HeaderHeader
Content row 2Content row 1
Content row 2Content row 2

Blockquote

> This Blockquote you may need...
>
> > Here is its child/nested one.

This Blockquote you may need...

Here is its child/nested one.

That's it... There is many more markdown present, sometimes it supports and sometimes it isn't. Hopefully, you like my Blog, Thank you...