Jupyter隐藏代码
隐藏代码
# ⼿动点击隐藏1
from IPython.display import display_html
display_html("""<button οnclick="$('.input, .prompt, .output_stderr, .output_error').toggle();">点击切换代码</button>""", raw=True)
# ⼿动点击隐藏2
from IPython.display import HTML
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="点击切换代码"></form>''')
# ⼿动点击隐藏3
from IPython.display import display
from IPython.display import HTML
display as di # Example: di.display_html('<h3>%s:</h3>' % str, raw=True)
# This line will hide code by default when the notebook is exported as HTML
di.display_html('<script>jQuery(function() {if (jQuery("book_app").length == 0) { jQuery(".input_area").toggle(); jQuery(".prompt").toggle();}});</scr ipt>', raw=True)
# This line will add a button to toggle visibility of code blocks, for use with the HTML export version
di.display_html('''<button οnclick="jQuery('.input_area').toggle(); jQuery('.prompt').toggle();">点击切换代码</button>''', raw=True)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论