1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 4 2 | /** @overview This is just an example. @module plugins/shout @author Michael Mathews <micmath@gmail.com> */ '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(); } } }; |