我使用Sphinx和sphinxcontrib-httpdomain编写API文档。
但是当我上次这样做时( make html )我收到了一个错误:
reading sources... [100%] administrator_operations
/path/to/my/project: ERROR: Unknown directive type "http:get".
在我的reStructuredText消息后结束。
我有所有组件:
$ pip search sphinxcontrib-httpdomain
sphinxcontrib-httpdomain - Sphinx domain for HTTP APIs
INSTALLED: 1.1.8 (latest)
答案 0 :(得分:0)
按照@mzjn的建议,我在conf.py的扩展名中添加了sphinxcontrib.httpdomain
:
extensions = [
'...',
'sphinxcontrib.httpdomain',
]