The usage of Markdown---表格
Posted liangjianli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The usage of Markdown---表格相关的知识,希望对你有一定的参考价值。
更新时间:2019.09.14
??谈到怎么在Markdown中插入表格,其实只要熟知以下几点就可以了:
- 使用管道符
|
进行内容的分割 - 使用冒号
:
和连号符-
表示表格内容的对齐情况,连号符-
在中间,冒号:
在左端表示左对齐,在右端表示右对齐,两端都有表示居中 - 每一行最左端和最右端的管道符
|
都可以省略
<!--完整写法-->
|name|gender|score|
|:-|:-:|-:|
|Alex|male|90|
|Sheley|female|95|
|John|male|85|
实际效果:
name | gender | score |
---|---|---|
Alex | male | 90 |
Sheley | female | 95 |
John | male | 85 |
<!--省略写法-->
name|gender|score
:-|:-:|-:
Alex|male|90
Sheley|female|95
John|male|85
实际效果:
name | gender | score |
---|---|---|
Alex | male | 90 |
Sheley | female | 95 |
John | male | 85 |
以上是关于The usage of Markdown---表格的主要内容,如果未能解决你的问题,请参考以下文章