mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
13 lines
379 B
JavaScript
13 lines
379 B
JavaScript
|
exports.reader = function(post) {
|
||
|
var filename = post.meta.filepath.toLowerCase();
|
||
|
if (post.meta.filepath.indexOf('components') >= 0) {
|
||
|
post.template = post.meta.template = 'component';
|
||
|
} else {
|
||
|
post.template = post.meta.template = (post.meta.template || 'page');
|
||
|
}
|
||
|
if (!post.meta.category) {
|
||
|
post.meta.category = post.meta.directory;
|
||
|
}
|
||
|
return post;
|
||
|
};
|