CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/project/jupyter/init.ts
Views: 687
1
/*
2
Initialize some functionality related to using Jupyter in a cocalc project.
3
*/
4
5
import { nbconvert } from "./convert";
6
import { initNbconvert } from "@cocalc/jupyter/kernel";
7
8
export default function init() {
9
initNbconvert(nbconvert);
10
}
11
12