在运行 jekyll serve
的时候,出现该问题:
Deprecation: You appear to have pagination turned on, but you haven’t included the
jekyll-paginate
gem. Ensure you havegems: [jekyll-paginate]
in your configuration file.
因为我们的配置文件_config.yml使用了 paginate
配置项,所以需要添加一行:
gems: [jekyll-paginate]