UNPKG

394 BJavaScriptView Raw
1/**
2 @overview This is just an example.
3 @module plugins/shout
4 @author Michael Mathews <micmath@gmail.com>
5 */
6'use strict';
7
8exports.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};