虽然Markdown原生是没有表格(table)支持的,只能通过插件实现,不过对Typecho来说是内置了支持的。
请看代码:
| Tables | Are | Cool |
|----------|:-------------:|------:|
| col 1 is | left-aligned | $1600 |
| col 2 is | centered | $12 |
| col 3 is | right-aligned | $1 |
↓↓↓↓将会得到↓↓↓↓↓
Tables | Are | Cool |
---|---|---|
col 1 is | left-aligned | $1600 |
col 2 is | centered | $12 |
col 3 is | right-aligned | $1 |
主要就是使用竖线 |
来连接,然后关键的是第二行,这是Typecho将之识别为表格的关键,没有不行。
默认是左对齐,如果要让某一列居中就在这一列的第二行输入 :---:
这样,如果是右对齐就是 ----:
表格两端的竖线不是必须的,所以,可以写成:
Tables | Are | Cool
----------|:-------------:|------:
col 1 is | left-aligned | $1600
col 2 is | centered | $12
col 3 is | right-aligned | $1
效果是一样的。
那么,问题来了,输入要输入|
怎么办?目前我只知道使用|
来代替。
Typecho升级到1.0以后,这个功能以及失效,不过在为知笔记里依然可以使用。什么?你不知道为知笔记支持Markdown?
Typecho继续升级到开发版,这个功能又回来了,╮(╯▽╰)╭