mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Most of the existing author tags are grossly out of date at this point. The definitive reference for who has contributed what is available at https://github.com/jsdoc3/jsdoc/graphs/contributors.
18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
/**
|
|
* This is just an example.
|
|
*
|
|
* @module plugins/shout
|
|
*/
|
|
'use strict';
|
|
|
|
exports.handlers = {
|
|
/**
|
|
* Make your descriptions more shoutier.
|
|
*/
|
|
newDoclet: function(e) {
|
|
if (typeof e.doclet.description === 'string') {
|
|
e.doclet.description = e.doclet.description.toUpperCase();
|
|
}
|
|
}
|
|
};
|