UNPKG

dgeni-packages

Version:

A collection of dgeni packages for generating documentation from source code

17 lines 461 B
/** * @dgProcessor filterNgDocsProcessor * @description * Remove docs that do not contain the ngdoc tag */ module.exports = function filterNgDocsProcessor(log) { return { $runAfter: ['tags-parsed'], $runBefore: ['extracting-tags'], $process(docs) { const docCount = docs.length; docs = docs.filter(doc => doc.tags.getTag('ngdoc')); log.debug('filtered ' + (docCount - docs.length) + ' docs'); return docs; } }; };