2

我使用 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)
4

1 回答 1

0

正如@mzjn 建议的那样,我在conf.pysphinxcontrib.httpdomain中添加了扩展:

extensions = [
    '...',
    'sphinxcontrib.httpdomain',
]
于 2019-03-12T19:16:29.413 回答