docs(api): add @demo tag

This commit is contained in:
Drew Rygh
2015-12-03 10:16:15 -06:00
parent 71235928ba
commit 411966a491
2 changed files with 18 additions and 7 deletions

View File

@@ -114,15 +114,21 @@ module.exports = function(currentVersion){
})
.config(function(parseTagsProcessor) {
// We actually don't want to parse param docs in this package as we are getting the data out using TS
// parseTagsProcessor.tagDefinitions.forEach(function(tagDef) {
// if (tagDef.name === 'param') {
// tagDef.docProperty = 'paramData';
// tagDef.transforms = [];
// }
// });
parseTagsProcessor.tagDefinitions.concat(require('./tag-defs/tag-defs'));
})
// .config(function(parseTagsProcessor) {
// // We actually don't want to parse param docs in this package as we are getting the data out using TS
// parseTagsProcessor.tagDefinitions.forEach(function(tagDef) {
// console.log(tagDef);
// if (tagDef.name === 'param') {
// tagDef.docProperty = 'paramData';
// tagDef.transforms = [];
// }
// });
// })
// Configure links
.config(function(getLinkInfo) {
getLinkInfo.useFirstAmbiguousLink = false;
@@ -163,4 +169,6 @@ module.exports = function(currentVersion){
'common.template.html'
]
})
}

View File

@@ -0,0 +1,3 @@
module.exports = [
{'name': 'demo'},
];