Markdown Cheatsheet

Photo by Andrew Neel on Unsplash

Markdown Cheatsheet

Readme Markdown

ยท

2 min read

First and foremost we start with

- Heading and level of heading

  • There are 6 levels of headings(1,2,3,4,5,6).
  • the number of hashes # must be preceding the heading text.
  • The level of heading you want then the number of hashes equal to the level of heading(For ex heading level can be:- 1,2,3,4,5,6)
  • There must be space between the last # of the preceding hashes and Heading text.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Preview of Levels of Headings:-

Screenshot (422).png

- Bold

**Bold** 
or Another way
__Bold__

Preview of Bold:-

Screenshot (427).png

- Italic

*italic*
or Another way
_italic_

Preview of Italic:-

Screenshot (428).png

- Strikethrough

~~text~~

Preview of Strikethrough:-

Screenshot (429).png

- List

  • Ordered List

The ordered list can be used as number then . then space then text.

1. One
2. Two
3. Three
        1. Inside three
        2. Inside three

Preview of Ordered List:-

Screenshot (430).png

  • Unordered List

The unordered list can use asterisks * , minuses- and pluses+.

* First asterisks
- Second minuses
+ Third pluses
        - one
        * two

Preview of Unordered Lists:-

Screenshot (431).png

// Syntax :- [Link Text Here](URL)
[Google](https://www.google.co.in/)

Preview of Links:-

Screenshot (432).png

// Syntax :- ![Text if image not loaded](Url)
![Test Image](https://images.pexels.com/photos/4584830/pexels-photo-4584830.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1)

Preview of Link Image:-

Screenshot (434).png

- Code Snippet

Screenshot (437).png

you can also highlight keywords in your text by using a single backtick preceding the keyword and ending the keyword.

Output:-

Screenshot (435).png

I hope you find this helpful. Go ahead and try this on your own.๐Ÿ˜€ If you like this then share it and give this blog a big thumbs up.

ย