您的位置:首页 > 其它

Jekyll解决Deprecation:you haven't included the `jekyll-paginate` gem

2016-01-07 17:15 225 查看

issue

issue
问题

解决

参考

问题

在运行
jekyll serve
的时候,出现该问题:

Deprecation: You appear to have pagination turned on, but you haven’t included the
jekyll-paginate
gem. Ensure you have
gems: [jekyll-paginate]
in your configuration file.

解决

因为我们的配置文件_config.yml使用了
paginate
配置项,所以需要添加一行:

gems: [jekyll-paginate]


参考

https://teamtreehouse.com/community/jekyllpaginate-gem
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  jekyll