IPython指令在构建文档期间创建损坏的输出

时间:2019-03-10 16:58:14

标签: python datatable jupyter-notebook ipython python-sphinx

我想使用sphinx和ipython指令构建文档。 我尝试在.rst文档中使用简单的命令:

.. ipython:: python

    import datatable as dt
    DT = dt.Frame(A=range(5))
    DT

在jupyter笔记本中,结果看起来不错:

enter image description here

但是在构建期间会使html结果损坏:

enter image description here

可能是什么原因?

它与熊猫或python一起很好地工作。

2 个答案:

答案 0 :(得分:0)

确保在conf.py中添加所需的扩展名:

extensions = ['IPython.sphinxext.ipython_console_highlighting',
              'IPython.sphinxext.ipython_directive']

答案 1 :(得分:0)

ipython中的已知问题是要发布的链接:https://github.com/ipython/ipython/issues/11424