1 | /**
|
2 | @overview This is just an example.
|
3 | @module plugins/shout
|
4 | @author Michael Mathews <micmath@gmail.com>
|
5 | */
|
6 | ;
|
7 |
|
8 | exports.handlers = {
|
9 | /**
|
10 | Make your descriptions more shoutier.
|
11 | */
|
12 | newDoclet: function(e) {
|
13 | if (typeof e.doclet.description === 'string') {
|
14 | e.doclet.description = e.doclet.description.toUpperCase();
|
15 | }
|
16 | }
|
17 | };
|