如何使编辑部分在jupyter中包括前置扩展名?

时间:2019-06-10 00:36:51

标签: jupyter

我写了一个扩展名来渲染和预览第一个文件。

当我尝试打包扩展名时,发现编辑部分不包含index.JS文件的前扩展名。

custom.js可以包含在edit部分中,但不能打包在python包中。

Tree和ipynb部分包含前端扩展。如何使编辑部分包括前置扩展名?

位于前扩展名的index.js

/*
 * Based on https://github.com/jdfreder/jupyter-tree-filter.git
 */

define([


], function (


) {

    function load_ipython_extension () {


        alert("hello,tree tree simple test!");



        // config.load();
    }

    return {
        load_ipython_extension : load_ipython_extension
    };

});

打开树和ipynb网址时,它将生效。 打开编辑网址时,效果不佳。

0 个答案:

没有答案