(post)
| 11 | module.exports = function (app, hexo) { |
| 12 | |
| 13 | function addIsDraft(post) { |
| 14 | post.isDraft = post.source.indexOf('_draft') === 0 |
| 15 | post.isDiscarded = post.source.indexOf('_discarded') === 0 |
| 16 | return post |
| 17 | } |
| 18 | |
| 19 | function tagsCategoriesAndMetadata() { |
| 20 | var cats = {} |