mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
With help from Lebab, plus a lot of manual cleanup. (And more cleanup to come, I'm sure.)
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
/**
|
|
* This is just an example.
|
|
*
|
|
* @module plugins/shout
|
|
*/
|
|
exports.handlers = {
|
|
/**
|
|
* Make your descriptions more shoutier.
|
|
*/
|
|
newDoclet({doclet}) {
|
|
if (typeof doclet.description === 'string') {
|
|
doclet.description = doclet.description.toUpperCase();
|
|
}
|
|
}
|
|
};
|