Python sphinx 自动摘要错误:“未知指令类型“自动摘要””

问题描述 投票:0回答:1

我有一个 sphinx 文档,当我包含以下几行时:

.. currentmodule:: myMod

.. autosummary::

  MyClass

我收到以下错误

ERROR: Unknown directive type "autosummary".

但是,自动摘要从 0.6 版本开始可用,我使用 Sphinx 1.1.3。

什么可能导致该问题? 谢谢!

编辑:为了更清楚一点,我正在谈论 python-sphinx,文档工具。

python-sphinx
1个回答
30
投票

sphinx.ext.autosummary
Sphinx 扩展。为了使用该扩展,您必须将其名称添加到conf.py中的
extensions
配置变量中:

extensions = ['sphinx.ext.autosummary', ...]
© www.soinside.com 2019 - 2024. All rights reserved.