Making your search easy, here's the cheat sheet of Markdown

·

1 min read

Making your search easy, here's the cheat sheet of Markdown

Overview

Markdown is a lightweight markup language. This cheat sheet provides not all but enough Markdown syntax to get you all started.

Hear we go:

NOTE: Left side is Element and Markdown syntax is in code snippet.

  • Heading : It can go up to six levels.

    #H1(Heading 1)  ##H2(Heading 2) ###H3(Heading 3)
    
  • Bold :

    ** bold text **
    
  • Italic :

    *italicized text*
    
  • Ordered List :
1. First item
2. Second item
3. Third item
  • Unordered List :
- First item
- Second item
- Third item
  • Code :
`code`
  • Link :
    [title](https://www.example.com)
    
  • Image :
    ![alt text](image.jpg)
    
  • Table :
    | Syntax | Description |
    | ----------- | ----------- |
    | Header | Title |
    | Paragraph | Text |
    
  • Strikethrough :
    ~~The world is flat.~~