我想使用sphinx和ipython指令构建文档。 我尝试在.rst文档中使用简单的命令:
.. ipython:: python
import datatable as dt
DT = dt.Frame(A=range(5))
DT
在jupyter笔记本中,结果看起来不错:
但是在构建期间会使html结果损坏:
可能是什么原因?
它与熊猫或python一起很好地工作。
答案 0 :(得分:0)
确保在conf.py
中添加所需的扩展名:
extensions = ['IPython.sphinxext.ipython_console_highlighting',
'IPython.sphinxext.ipython_directive']
答案 1 :(得分:0)
ipython中的已知问题是要发布的链接:https://github.com/ipython/ipython/issues/11424