MaketRandevu/data/scripts/jsdoc/plugins/shout.js
2013-05-20 17:21:58 +00:00

16 lines
No EOL
379 B
JavaScript

/**
@overview This is just an example.
@module plugins/shout
@author Michael Mathews <micmath@gmail.com>
*/
exports.handlers = {
/**
Make your descriptions more shoutier.
*/
newDoclet: function(e) {
if (typeof e.doclet.description === 'string') {
e.doclet.description = e.doclet.description.toUpperCase();
}
}
};