如何将ipython笔记本转换为带有折叠输出(和/或输入)的html

时间:2014-06-05 13:49:04

标签: javascript python html jupyter-notebook jupyter

我有ipython notebook我想与未安装ipython的同事分享。

所以我将其转换为html:

ipython nbconvert my_notebook.ipynb

但我的问题是我有很长的输出会使阅读变得困难,而且我想知道是否可以在html版本上使用笔记本查看器的折叠或滚动选项

基本上,我喜欢这样:output example enter image description here

但是在html版本中。这甚至可能吗?

感谢您的帮助!

3 个答案:

答案 0 :(得分:2)

我找到了我想要的东西,感谢blog,这正是我想要的。

我修改了一下以使其与ipython 2.1一起使用[编辑:与Jupyter一起工作],并混合输入和输出隐藏技巧。

它的作用:

打开html文件时,将显示所有输入并隐藏输出。通过单击输入字段,它将显示输出字段。一旦你有两个字段,你可以通过点击另一个来隐藏它。

编辑:它现在隐藏了长输入,并且总是显示大约1行(通过defa。您可以通过单击输入数字来显示所有内容。当您没有输出时这很方便(如定义您想要隐藏在HTML文档中的长功能

您需要在执行nbconvert时添加模板:

ipython nbconvert --template toggle my_notebook.ipynb

其中toggle是一个包含以下内容的文件:

{%- extends 'full.tpl' -%}

{% block output_group %}
<div class="output_hidden">
{{ super() }}
</div>
{% endblock output_group %}

{% block input_group -%}
<div class="input_hidden">
{{ super() }}
</div>
{% endblock input_group %}

{%- block input -%}
<div class="in_container">
<div class="in_hidden">
{{ super() }}
<div class="gradient">
</div>
</div>
</div>
{%- endblock input -%}


{%- block header -%}
{{ super() }}

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

<style type="text/css">
div.output_wrapper {
  margin-top: 0px;
}
.output_hidden {
  display: block;
  margin-top: 5px;
}
.in_hidden {
   width: 100%;
   overflow: hidden;
   position: relative;
}

.in_container {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
}

.gradient {
    width:100%;
    height:3px;  
    background:#eeeeee;
    position:absolute;
    bottom:0px;
    left:0;
    display: none;
    opacity: 0.4;
    border-bottom: 2px dashed #000;
}
div.input_prompt {
    color: #178CE3;
    font-weight: bold;
}
div.output_prompt {
    color: rgba(249, 33, 33, 1);
    font-weight: bold;
}
</style>

<script>
$(document).ready(function(){
  $(".output_hidden").click(function(){
      $(this).prev('.input_hidden').slideToggle();
  });
  $(".input_hidden").click(function(){
      $(this).next('.output_hidden').slideToggle();
  });
var slideHeight = 25;
$(".in_container").each(function () {
    var $this = $(this);
    var $in_hidden = $this.children(".in_hidden");
    var defHeight = $in_hidden.height();
    if (defHeight >= 61) {
        var $prompt = $this.prev(".input_prompt");
        var $gradient = $in_hidden.children(".gradient");
        $in_hidden.css("height", slideHeight + "px");
        $gradient.css("display", "block");
        $prompt.click(function () {
            var curHeight = $in_hidden.height();
            if (curHeight == slideHeight) {
                $in_hidden.animate({
                    height: defHeight
                }, "normal");
                $gradient.fadeOut();
            } 
            else {
                $in_hidden.animate({
                    height: slideHeight
                }, "normal");
                $gradient.fadeIn();
            }
            return false;
        });
    }
});
});

</script>
{%- endblock header -%}

基本上,您可以随意注入任何想要自定义笔记本的javascript和css!

玩得开心!

答案 1 :(得分:0)

Ipython 2.0现在包括直接在笔记本中保存到HTML。

滚动条是使用行&gt;自动创建的。 100旧版本。 Docs如果他们仍然显示,你的html输出也应该有吧,不是吗?

答案 2 :(得分:0)

您可以使用下面的代码将笔记本折叠为HTML格式。

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>''')