在导出的Jupyter笔记本中,如何禁用¶?

时间:2016-09-15 18:36:25

标签: markdown jupyter-notebook nbconvert

当我将笔记本导出到html时,我的标题最后有一个¶(pilcrow);我怎么把它关掉?

以下是我正在使用的示例命令:

jupyter nbconvert --to html --template basic Untitled.ipynb

其中笔记本只包含一个带有降价标题和文字的单元格:

# Here I am

Rock you like a hurricane

2 个答案:

答案 0 :(得分:1)

我也有这个问题。我的解决方法是要意识到,这个pilcrow在html中有自己的类,这与它所遵循的标题不同,并将以下内容添加到css中,以使pilcrow的字体大小为0,从而从渲染中删除了pilcrow页。

.anchor-link{
    font-size: 0;
}

您还可以使文本颜色与背景相同,或者使其他一些东西能够使Pilcrow有效消失。

答案 1 :(得分:1)

现在支持配置选项:

import mistune
import nbconvert
nbconvert.filters.markdown_mistune.IPythonRenderer.header = mistune.Renderer.header

OLD:

我可以通过修补降价渲染器来关闭十字架:

{{1}}

但这看起来很糟糕。