UNPKG

blogware

Version:

A static site generator for hosting full-featured Ghost blog on GitHub Pages.

20 lines (14 loc) 280 B
function pass(file) { if (!file) return null; if (file.meta('type') !== 'document') { return file; } if (file.meta('collection') === 'posts') { mark(file); } return file; } function mark(file) { file.meta('mark').push('posts'); } module.exports = pass;