convert ipython notebook to presentation with cells contents hidden
jupyteripythonpresentationscss
Abstraction: CSS trick to hide code cells in Jupyter slideshow presentations
Key points:
- Goal: convert IPython notebook to a reveal.js presentation showing only output (plots), not code
- Solution: add
div.input.hbox, div.prompt.output_prompt { display: none; }to custom.css - Per-slide cell visibility control was not available at time of posting (2013)
- This applies to the classic notebook; modern Jupyter has cell metadata tags for slide visibility
Connections: Jupyter ยท Jupyter Notebooks