前段时间我为 JupyterNotebook 编写了一个扩展。现在我想将其改编为 JupyterLab。
为了访问当前打开的笔记本,我使用了:
var notebook = Jupyter.notebook;
var firstCell = notebook.get_cells()[0];
=> Jupyterlab对应的代码是什么?
module.exports = [{
id: 'jupyterlab_workspace_module',
autoStart: true,
activate: function(app) {
//app.notebook is not defined
var notebook = getNotebook(app); // <= how to implement this?
}
}];
繁星淼淼
相关分类