Test Markdown

# Title 1

Title 1

## Title 2

Title 2

### Title 3

Title 3

#### Title 4

Title 4

##### Title 5

Title 5

###### Title 6

Title 6

Plain Text

Plain Text

<font color='red'>Colored Font</font>

Colored Font

1
2
3
> Blockquote
>
> > Blockquote

Blockquote

Blockquote

*Italic*

Italic

**Bold**

Bold

***Bold Italic***

Bold Italic

~~Strikethrough~~

Strikethrough

1
2
3
4
5
6
7
- List 1,1
- List 1,2
- List 1,3
- List 2,1
- List 2,2
- List 3,1
- List 3,2
1
2
3
4
5
6
7
- List 1,1
- List 1,2
- List 1,3
- List 2,1
- List 2,2
- List 3,1
- List 3,2
  • List 1,1
  • List 1,2
  • List 1,3
    • List 2,1
    • List 2,2
      • List 3,1
      • List 3,2
1
2
3
4
5
6
7
1. List 1,1
2. List 1,2
3. List 1,3
1. List 2,1
2. List 2,2
1. List 3,1
2. List 3,2
  1. List 1,1
  2. List 1,2
  3. List 1,3
    1. List 2,1
    2. List 2,2
      1. List 3,1
      2. List 3,2
1
`Inline Code`

Inline Code

1
2
def func():
print("Hello World")

[Link](https://www.google.com)

Link

![Image](/assets/Test_Markdown/test-image.png)

Image

1
2
3
4
5
6
| Table | Header |  1  |  2  |  3  |
| :---: | :----: | :-: | :-: | :-: |
| 1,1 | 1,2 | 1,3 | 1,4 | 1,5 |
| 2,1 | 2,2 | 2,3 | 2,4 | 2,5 |
| 3,1 | 3,2 | 3,3 | 3,4 | 3,5 |
| 4,1 | 4,2 | 4,3 | 4,4 | 4,5 |
Table Header 1 2 3
1,1 1,2 1,3 1,4 1,5
2,1 2,2 2,3 2,4 2,5
3,1 3,2 3,3 3,4 3,5
4,1 4,2 4,3 4,4 4,5
1
2
3
4
5
| Left | Center | Right |
| :--- | :----: | ----: |
| 1,1 | 1,2 | 1,3 |
| 2,1 | 2,2 | 2,3 |
| 3,1 | 3,2 | 3,3 |
Left Center Right
1,1 1,2 1,3
2,1 2,2 2,3
3,1 3,2 3,3
1
2
3
4
5
6
7
<div style="text-align: center">
<img
src="/assets/Test_Markdown/test-image.png"
alt="Image"
style="width: 50%; height: 50%"
/>
</div>

This is html code.

Note that if use HTML to add images, you should add a slash before the assets path. Or the image will not be displayed. Or use an online path of the image.

Image