Contents

Markdown Syntax Basic

Markdown Basic

italic and bold

use * [text] * and ** [text] ** to render italic and bold

this is italic, and this is bold.

use === for h1,use — for h2

1
2
3
4
5
6
7
h1
============================

h2
--------------------------------------------------

### h3

Use # for (H1-H6),like:# H1, ## H2, ### H3,#### H4。

use [text](links) for links。

this is link to my website

unordered list

use *,+,- for Unordered list

- list 1
- list 2
- list 3
  • list 1
  • list 2
  • list 3

ordered list

use number and .

1. ordered list 1
2. ordered list 2
3. ordered list 3
  1. ordered list 1
  2. ordered list 2
  3. ordered list 3

blockquotes

use > for blockquotes

> someone said

someone said

inline code

use `code` for inline code

it is html format

code block

use four leading spaces to indicate code block

there is four leading spaces to the lest

image

use ![text](link) for image

https://i.ytimg.com/vi/B9gjMJ4rTJw/maxresdefault.jpg

with size restriction or style

<img src="https://i.ytimg.com/vi/B9gjMJ4rTJw/maxresdefault.jpg" alt="drawing" width="200" height="200"/>
drawing