1 | initial version |
You can also hide input cells using CSS styling. If you want to hide input cells in the interactive worksheet, add a cell at the start of the worksheet like this:
%html <style> textarea.cell_input {display : none} </style>
But then you need to edit the worksheet source to change none
to inline
to see your input again. The other option is to hide all your input just in the print view, e.g. if you're producing a nicely formatted PDF of all your results. To do that:
%html <style> .cell_input_print {display : none} </style>