Bobscript

Typecho使用markdown输入表格(为知笔记适用)

Typecho使用markdown输入表格(为知笔记适用)

虽然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将之识别为表格的关键,没有不行。

默认是左对齐,如果要让某一列居中就在这一列的第二行输入 :---: 这样,如果是右对齐就是 ----:


20141009补充:

表格两端的竖线不是必须的,所以,可以写成:

 Tables   |      Are      |  Cool 
----------|:-------------:|------:
 col 1 is |  left-aligned | $1600 
 col 2 is |    centered   |   $12 
 col 3 is | right-aligned |    $1 

效果是一样的。

那么,问题来了,输入要输入|怎么办?目前我只知道使用|来代替。

20141231补充:

Typecho升级到1.0以后,这个功能以及失效,不过在为知笔记里依然可以使用。什么?你不知道为知笔记支持Markdown?

20150126补充:

Typecho继续升级到开发版,这个功能又回来了,╮(╯▽╰)╭