I’m trying to use jupyterlab-rise to render a notebook with interactive widgets as a slide show. Is there a tag that can be applied to cells to remove the input cell on render in the slideshow?
My hacky solution so far is to make custom CSS that hides the input cell:
div.lm-Widget.jp-CodeMirrorEditor.jp-Editor.jp-InputArea-editor {
max-height: 0px !important;
border-width: 0px !important;
}
1 Like