blogware
Version:
A static site generator for hosting full-featured Ghost blog on GitHub Pages.
30 lines (21 loc) • 435 B
JavaScript
var table = require('../table');
function pass(file) {
if (!file) return null;
if (file.meta('event') === 'unlink') {
return file;
}
if (file.meta('type') !== 'document') {
return file;
}
if (!table.route.r2l(file.relative)) {
return file;
}
if (file.meta('matter').perpage) {
mark(file);
}
return file;
}
function mark(file) {
file.meta('mark').push('paginate');
}
module.exports = pass;