-
Notifications
You must be signed in to change notification settings - Fork 86
Open
Description
hexo-generator-search/lib/json_generator.js
Lines 73 to 86 in 2482d2c
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.
Metadata
Metadata
Assignees
Labels
No labels