Only Cheat Sheet For Markdown Syntax, You Need To Bookmark

Only Cheat Sheet For Markdown Syntax, You Need To Bookmark

The Ultimate Markdown Cheat Sheet

What is Markdown? It is a plain text formatting syntax that is used to write for the Internet, without even learning about heavy tags of HTML. Markdown is dead simple to learn and super quick to use.

You may use it in your daily life unknowingly. For example - We sometimes make your text bold on Whatsapp by just adding the asterisk sign around the text. That's Markdown for you!

Don't forget to Bookmark it first.

I will provide all the syntax which you generally going to use while writing Markdown Documents. All the screenshots of the output are of VS Code. You can even write markdown syntax directly in Github.

Note - Markdown File Have an Extention of .md

Headings

# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6

Output -

image.png

Text Styles

Bold

**Bold Text**
__Bold Text__

Italic

*Italic Text 1*
_Italic Text 2_

Output -

image.png

Blockquote

> This is a Blockquote

Output -

image.png

Lists

Ordered List
1. First item
2. Second item
3. Third item

Unordered List
- First item
- Second item
- Third item

Ordered List with Nesting
1. First item
    1. First's First item
    2. First's Second item
2. Second item
3. Third item

Unordered List with Nesting
- First item
- Second item
- Third item
    - Third's First item
    - Third's Second item

Output -

image.png

Code

`You Can Write Code Here`

Output -

image.png

Horizontal Line

---

Output -

image.png

Strikethrough

~~Strikethrough~~

Output -

image.png

Table

| Default | Left align | Center align | Right align |
| - | :- | :-: | -: |
| 10000 | 10000| 10000 | 10000 |
| 1000 | 1000| 1000 | 1000 |
| 100 | 100| 100 | 100 |

Output -

image.png

Images

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

Output -

image.png

[Link To Portfolio](https://www.indertjeetbhagat.com)

Output -

image.png

That's all for the basics Markdown Syntax you may need in your day-to-day formatting.