docs: add table syntax in Markdown guide

This commit is contained in:
Le Tan 2018-01-01 14:54:00 +08:00
parent 9e5f3abb4b
commit 968b674a50
2 changed files with 16 additions and 0 deletions

View File

@ -63,6 +63,14 @@ Notice that the sequence number is irrelevant. Markdown will change the sequence
4. Item 4 4. Item 4
``` ```
### Tables
```md
| col 1 | col 2 | col 3 |
| --- | --- | --- |
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
```
### Images and Links ### Images and Links
```md ```md
![Image Alt Text](/url/to/images.png) ![Image Alt Text](/url/to/images.png)

View File

@ -64,6 +64,14 @@ __This text will be bold__
4. Item 4 4. Item 4
``` ```
### 表格
```md
| col 1 | col 2 | col 3 |
| --- | --- | --- |
| cell1 | cell2 | cell3 |
| cell4 | cell5 | cell6 |
```
### 图片和链接 ### 图片和链接
```md ```md
![Image Alt Text](/url/to/images.png) ![Image Alt Text](/url/to/images.png)