码迷,mamicode.com
首页 > 其他好文 > 详细

修改jekyll配置增加扩展内容

时间:2015-03-11 09:23:48      阅读:119      评论:0      收藏:0      [点我收藏+]

标签: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配置增加扩展内容

标签:jekyll   markdown   table   strikethrough   

原文地址:http://blog.csdn.net/joueu/article/details/44193921

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!