mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
17 lines
490 B
JavaScript
17 lines
490 B
JavaScript
exports.reader = function(post) {
|
|
var filename = post.meta.filepath.toLowerCase();
|
|
if (filename.indexOf('components') >= 0) {
|
|
post.template = post.meta.template = 'component';
|
|
} else {
|
|
post.template = post.meta.template = (post.meta.template || 'page');
|
|
}
|
|
if (filename === 'readme.md') {
|
|
post.filename = post.meta.filename = 'index';
|
|
post.meta.category = 'docs';
|
|
}
|
|
if (!post.meta.category) {
|
|
post.meta.category = post.meta.directory;
|
|
}
|
|
return post;
|
|
};
|