# Markdown

Introduce some markdown syntax.

# Title

#     h1
##    h2
###   h3
####  h4

# Text

Italic Italic Text

*Italic*  Italic Text

Bold Bold Text

**Bold**  Bold Text

# List

  • aa
  • bb
  • cc
- aa
- bb
- cc

  1. aa
  2. bb
  3. cc
1. aa
2. bb
3. cc

# Table

name description
color The component color.
size The component size.
| name  | description          |
| ----- | -------------------- |
| color | The component color. |
| size  | The component size.  |

# Code

color

`color`
const a = 1;
const b = 2;
npm i xxx
+ const a = 1;
- let a = 1;

How to write, please check the code.

# Vuepress tip

TIP

This is a tip

Warning

This is a warning

Danger

This is a dangerous warning

How to write, please check the code.


# More

For more, please search markdown syntax.