跑步时
sphinx-build . html/
在我的doc/
目录中,我得到以下输出:
$ sphinx-build . html/
Running Sphinx v0.6.4
No builder selected, using default: html
loading pickled environment... done
building [html]: targets for 0 source files that are out of date
updating environment: 0 added, 1 changed, 0 removed
reading sources... [100%] index
reST markup error:
HIDDEN/PATH/matplotlib_visualization.py:docstring of simulator.extensions.matplotlib_visualization.beta:20: (SEVERE/4) Unexpected section title.
这个文件有numpy
导入,经过一番研究,似乎 sphinx 使用的 RST 标记的numpy
记录方式有问题。当我取出 numpy 导入时,html 构建良好。
解决此问题的最佳方法是什么?