The Ultimate Markdown Cheat Sheet

ยท

1 min read

Markdown

Write an awesome readme


What is Markdown?

Markdown is a way of writing rich-text using various syntax.

Heading

# Heading 1

## Heading 2

### Heading 3

Output:

Heading 1

Heading 2

Heading 3


Bold

**Bold**

or

__Bold__

Output: Bold


Italic

*Italic*

or

_Italic_

Output: Italic


Strike through

~~999~~ 299

Output: strike.PNG


Ordered List

1. One
2. Two
3. Three
    1. One
    2. Three

Output:

  1. One
  2. Two
  3. Three
    1. One
    2. Three

Unordered List

- One
- Two
- Three
    - One
    - Two

Output:

  • One
  • Two
  • Three
    • One
    • Two

Link

[Read My Blogs](https://umangpincha.hashnode.dev "Umang Pincha Blog's")

Output: [Read My Blogs](umangpincha.hashnode.dev "Umang Pincha Blog's")


Generate Code snippet

01.PNG

Output:

01_op.PNG


Generate Image

![LCO](https://learncodeonline.in/mascot.png)

Output: LCO


Thank You , Have a nice day! ๐Ÿ˜

ย