2014-10-20 16:56:45 -04:00
|
|
|
/**
|
|
|
|
@overview This is just an example.
|
|
|
|
@module plugins/shout
|
|
|
|
@author Michael Mathews <micmath@gmail.com>
|
|
|
|
*/
|
2014-10-22 10:11:40 -04:00
|
|
|
'use strict';
|
2014-10-20 16:56:45 -04:00
|
|
|
|
|
|
|
exports.handlers = {
|
|
|
|
/**
|
|
|
|
Make your descriptions more shoutier.
|
|
|
|
*/
|
|
|
|
newDoclet: function(e) {
|
|
|
|
if (typeof e.doclet.description === 'string') {
|
|
|
|
e.doclet.description = e.doclet.description.toUpperCase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|