chore(doc-gen): add docType info into _data.json files

This commit is contained in:
Peter Bacon Darwin
2015-09-16 17:55:03 +01:00
committed by Naomi Black
parent 608f35b4a7
commit 19274e744d
3 changed files with 18 additions and 11 deletions

View File

@ -44,7 +44,8 @@ module.exports = function addJadeDataDocsProcessor() {
title: _.map(path.basename(doc.fileInfo.baseName).split('_'), function(part) {
return titleCase(part);
}).join(' '),
intro: doc.description.replace('"', '\"').replace(/\s*(\r?\n|\r)\s*/g," ")
intro: doc.description.replace('"', '\"').replace(/\s*(\r?\n|\r)\s*/g," "),
docType: 'module'
}];
// GET DATA FOR EACH PAGE (CLASS, VARS, FUNCTIONS)
@ -53,6 +54,7 @@ module.exports = function addJadeDataDocsProcessor() {
return {
name: exportDoc.name + '-' + exportDoc.docType,
title: exportDoc.name,
docType: exportDoc.docType,
varType: exportDoc.symbolTypeName && titleCase(exportDoc.symbolTypeName)
};
})