Markdown Cheat Sheet

·

1 min read

Markdown  Cheat Sheet

Overview

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

Basic Syntax

Following are some basic elements of markdown

Heading

# H1
## H2
### H3

Bold

*** bold text ***

Output :-

bold text

Italic

*italic text*

Output :-

italic text

Blockquote

> Blockquote

Output :-

Blockquote

Order list

1. first
2. second
3. third

Output :-

  1. first
  2. second
  3. third

Unordered List

- first
- second
- third

Output :-

  • first
  • second
  • third

Inline Code

Inline `code`

Output :-

inline code

Horizontal Rule

---
[Ui Color Picker](https://uicolorpicker.com/)

Output :-

Ui Color Picker

Image

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

Output :-

Image

Table

| syntax | Description |
| ------ | ----------- |
| Header | Title       |
| paragraph | Text     |

Output :-

syntaxDescription
HeaderTitle
paragraphText