繁体   English   中英

<details></details> HTML5 下拉字符未在 Jupyter 中显示

[英]<details></details> HTML5 drop-down character not shown in Jupyter HTML nbconverted files in Firefox

这个问题让我有些头疼。 对于 jupyter 实验室研讨会,我们使用<details></details>来提供有关点击的更多信息。

但是,当笔记本通过 nbconvert 转换为 HTML 时,下拉箭头只会在 Chrome 中显示,而不是 Firefox。

看看这个(火狐): 在此处输入图像描述

在 Chrome 中: 在此处输入图像描述

这是由以下 Bootstrap 元素引起的。

summary {
  display: block;
}

..添加到 HTML output。

要解决此问题,必须将以下代码添加到转换后的 HTML:

<style type="text/css">
/* Fix details summary arrow
   not shown in Firefox
   due to bootstrap
   display: block;
 */
summary {
    display: list-item;
}
</style>

可以创建一个自动添加它的 nbconvert 模板。

创建一个名为nbconvert.tpl的文件,其内容如下:

{% extends 'full.tpl'%}

{# this template will render cells with tags highlight,
highlight_red and hide_code differently #}

{% block header %}
    {{ super() }}
    <style type="text/css">
    /* Fix details summary arrow
       not shown in Firefox
       due to bootstrap
       display: block;
     */
    summary {
        display: list-item;
        outline: none;
    }
    </style>
{% endblock header%}

{% block input_group %}
    {{ super() }}
{% endblock input_group %}

{% block output_group %}
    {{ super() }}
{% endblock output_group %}

并在将 jupyter 笔记本转换为 HTML 文件时使用它:

jupyter nbconvert --to html \
    --output-dir=. ./notebook.ipynb \
    --template=./nbconvert.tpl

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM