mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-03-16 00:11:10 +08:00
26 lines
836 B
JavaScript
26 lines
836 B
JavaScript
![]() |
module.exports = function jekyll(renderDocsProcessor) {
|
||
|
return {
|
||
|
name: 'readmes',
|
||
|
description: 'Create jekyll includes',
|
||
|
$runAfter: ['paths-computed'],
|
||
|
$runBefore: ['rendering-docs'],
|
||
|
$process: function(docs) {
|
||
|
var currentVersion = renderDocsProcessor.extraData.version.current.name;
|
||
|
|
||
|
// pretty up and sort the docs object for menu generation
|
||
|
docs = docs.filter(function(doc) {
|
||
|
return (!!doc.name && !!doc.outputPath) || doc.docType === 'index-page';
|
||
|
});
|
||
|
|
||
|
docs.forEach(function(doc, i) {
|
||
|
doc.npmId = doc.outputPath.replace('/README.md', '')
|
||
|
.replace('src/@ionic-native/plugins/','');
|
||
|
doc.outputPath = doc.outputPath.replace('src/', '');
|
||
|
});
|
||
|
|
||
|
// returning docs will replace docs object in the next process
|
||
|
return docs;
|
||
|
}
|
||
|
};
|
||
|
};
|