Markdown Cheat Sheet

Markdown Cheat Sheet

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements.

1.HEADERS

This element is used to create headings, Hash(#) is used to define this

Syntax :

# H1
## H2
### H3
#### H4
##### H5
###### H6

Output:

H1

H2

H3

H4

H5
H6

2. EMPHASIS

You can add emphasis by making text bold or italic

a.bold

Used to make text bold with ** **

Syntax:

**Bold Text**

Output: Bold Text

b.Italic

Used to make text in italic style with * *

Syntax:

*Italic*

Output: Italic Text

3.Blockquote

The text entered in blockquote will be displayed in block, it is refered with >

Syntax:

> Hi all , welcome to this page

Output:

Hi all , welcome to this page

4.Lists

You can organize items into ordered and unordered lists.

a.Ordered Lists

To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one

Syntax:

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

Output:

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

b. Unordered Lists

To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a nested list.

Syntax:

- First item
- Second item
- Third item
- Fourth item
    - Indented item
    - Indented item

Output:

  • First item
  • Second item
  • Third item
  • Fourth item
    • Indented item
    • Indented item

5.Code Blocks

Code blocks are normally indented four spaces or one tab. When they’re in a list, indent them eight spaces or two tabs.

Syntax:

\\\```\\\
CODE
\\\```\\\

Output:

CODE

6. Images

Syntax :

![Alt text](https://document360.com/wp-content/uploads/2020/01/Introductory-Guide-to-Markdown-for-Documentation-Writers-Document360-1200x683.jpg)

Output:

MARKDOWNLOGO

7. Links

Syntax:

[click here](https://www.google.com/)

Output: click here

8.Table

Head1Head2Head3
123
456
789