mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
* Update JupyterLab and Lumino packages * fix resolutions * Update to TypeScript 5 final * Reuse upstream sessionDialogs plugin * update gitpod setup * Update UI tests setup * Update npmClient * try without immutable * add explicit playwright dep * Update mathjax package * update yarn.lock * update dev dependencies * lint * update yarn.lock * Fix typescript dependency * fix metapackage
15 lines
424 B
JavaScript
15 lines
424 B
JavaScript
exports.handlers = {
|
|
newDoclet: function (e) {
|
|
// e.doclet will refer to the newly created doclet
|
|
// you can read and modify properties of that doclet if you wish
|
|
if (typeof e.doclet.name === 'string') {
|
|
if (e.doclet.name[0] === '_') {
|
|
console.log(
|
|
'Private method "' + e.doclet.longname + '" not documented.'
|
|
);
|
|
e.doclet.memberof = '<anonymous>';
|
|
}
|
|
}
|
|
},
|
|
};
|