Markdown Cheat Sheet

Markdown Cheat Sheet

Everything you need to know

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents . It's allows you to write using an easy to read, easy to write plain text format.

We will talk about some important mockdown tags . Let's get start

Heading :

There are 3 types of Heading .

1 . Heading-1

Input: # This is a heading 1

Output:

This is a heading 1

2 . Heading-2

Input: ## This is a heading 2
Output:

This is a heading 2

3 . Heading-3

Input: # This is a heading 3

Output:

This is a heading 3

Bold :

To bold text, add two asterisks or underscores before and after a word or phrase. To bold the middle of a word for emphasis, add two asterisks without spaces around the letters.

Input: **I am a student**

Output: I am a student

Ordered List :

To create an ordered list, don’t have to be write in numerical order, but the list should start with the number one.

Input:

1. First item
1. Second item
1. Third item
1. Fourth item

Output:

1. First item
2. Second item
3. Third item
4. Fourth item

Unordered List:

To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items.

Input:

- First item
* Second item
+ Third item

Output:

  • First item
  • Second item
  • Third item

Link:

To add a link, use []() . [] this is Name of the url and () this exact link location

Input:

[Lco](https://web.learncodeonline.in/).

Output: Lco

Image :

Adding images and adding links are almost the same. Add image to use ! in front of link.

Input:

![Lco](https://web.learncodeonline.in/_next/image?url=%2FAssets%2FPro%2FLCO-01.png&w=384&q=75)

Output: Lco

Extended Syntax :

Table :

To add a table, use three hyphens --- to create column’s header, and use pipes | to separate column.

Input:

| Course | Price|
| --- | ----------- |
| Java script bootcamp| 899 |
| Python program | 999|
| Machine learning | 1299|

Output:

CoursePrice
Java script bootcamp899
Python program999
Machine learning1299

Emoji :

Emoji beautify the page .

Input: Flying kiss :kissing_smiling_eyes:

Output: Flying kiss 😙

Highlight :

Highlight one of the most important points in Markdown . To highlight words, use two equal == before and after the words.

Input: The ==flower== is very beautiful

Output: The flower is very beautiful