标签:jekyll markdown table strikethrough
之前在我的博客http://helkyle.tk写的文章使用table的时候都是用html格式写的,大概是这样。
<table>
<tr>
<th>username
</th>
<th>QQ
</th>
<tr>
<tr>
<td>
Helkyle
</td>
<td>
306295636@qq.com
</td>
<tr>
</table>
虽然写起来也不难,但是其实markdown已经为我们准备了更方便的方法。
| username | QQ |
| ------------- |:-------------:|
| Helkyle | 306295636@qq.com |
这样写,就能实现和相面代码相同的效果。你可以把代码复制到 这里 在线查看效果。
但是:
jekyll 默认是不支持这样写的,需要在_config中添加扩展,
markdown: redcarpet
redcarpet:
extensions: ["tables"]
然后重启localhost 就行了。 嘿嘿。 还有其他扩展,比如markdown的strikethrough
这样,也是添加到extensions里面就行了,其他扩展可以看这里jekyll官网
标签:jekyll markdown table strikethrough
原文地址:http://blog.csdn.net/joueu/article/details/44193921