1/* 2Initialize some functionality related to using Jupyter in a cocalc project. 3*/ 4 5import { nbconvert } from "./convert"; 6import { initNbconvert } from "@cocalc/jupyter/kernel"; 7 8export default function init() { 9 initNbconvert(nbconvert); 10} 11 12