10 lines
221 B
JavaScript
Executable File
10 lines
221 B
JavaScript
Executable File
exports.defineTags = function(dictionary) {
|
|
dictionary.defineTag('ngdoc', {
|
|
mustHaveValue: true,
|
|
onTagged : function(doclet, tag) {
|
|
doclet.addTag('kind', 'class');
|
|
doclet.ngdoc = tag.value;
|
|
}
|
|
});
|
|
};
|