wzpan/hexo-generator-search

Page does not support tags and categories

Opened this issue · 0 comments

if (page.tags && page.tags.length > 0) {
var tags = new Array()
var tag_index = 0
page.tags.each(function (tag) {
tags[tag_index] = tag.name;
});
temp_page.tags = tags
}
if (page.categories && page.categories.length > 0) {
temp_page.categories = []
(page.categories.each || page.categories.forEach)(function (item) {
temp_page.categories.push(item);
});
}

Page does not support tags and categories, need to delete them.