Hexo带过滤功能的首页插件
原文链接 https://jamling.github.io/2016/07/21/Web-hexo-generator-index2/
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。
简介
带过滤功能的Hexo首页生成器插件。在官方的首页生成器基础上添加了过滤指定分类/标签的功能。比如,在首页只显示指定分类下面的文章列表。
安装
$ npm install hexo-generator-index2 --save
$ npm uninstall hexo-generator-index --save
配置
index_generator:
per_page: 10
order_by: -date
include:
- category Web # 只包含Web分类下的文章
exclude:
- tag Hexo # 不包含标签为Hexo的文章
- per_page: Posts displayed per page. (0 = disable pagination)
- order_by: Posts order. (Order by date descending by default)
- include: Posts filter include option
- exclude: Posts filter exclude option
除了include和exclude,其它如per_page和order_by都是原有的官方首页生成器选项,不必更改。
Include/exclude 选项格式为属性 值
(注意,属性与值中间有个英文的空格),可选的属性有:
- category: 文章分类
- tag: 文章标签
- path: 文章源路径
传送门
https://github.com/Jamling/hexo-generator-index2