Created
May 12, 2017 22:21
-
-
Save debboutr/407f59a4333f5c91a908c6a262342e7a to your computer and use it in GitHub Desktop.
Remove code from jupyter notebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | |
<b><a href="javascript:code_toggle()">:)</a></b>''') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment