我有一个使用 NBviewer 可视化的 ipython/jupyter 笔记本。
如何隐藏 NBviewer 呈现的笔记本中的所有代码,以便只显示代码的输出(例如绘图和表格)和降价单元格?
from IPython.display import HTML HTML('''<script> code_show=true; function code_toggle() { if (code_show){ $('div.input').hide(); } else { $('div.input').show(); } code_show = !code_show } $( document ).ready(code_toggle); </script> <form action="javascript:code_toggle()"><input type="submit" value="Click here to toggle on/off the raw code."></form>''')