阅读文档并不自动生成py-modindex.html

时间:2015-08-13 23:34:42

标签: python python-sphinx

我正在使用public int Compare(myClass x, myClass y) { int someInteger; // Standard, boring sorting code here. // This is an MVC application calling into an Async method() here... var xx = x.CallNewAsyncMethod(); var yy = y.CallNewAsyncMethod(); // Work with xx and yy now... return someInteger; } 来记录我的项目。内置sphinx文件包含:

index.rst

自动生成Indices and tables ------------------ * :ref:`genindex` * :ref:`modindex` * :ref:`search` 页面。这在我的本地机器上非常有用。

所以我想在readthedoc.org上主持这个文档。但是,readthedoc所做的是去我的github,找到conf.py,生成所有的html。但是从那以后

py-modindex.html

要求所有可从本地导入的模块,他们可能不会这样做。因此,我看不到* :ref:`modindex` 页面。知道如何把它带回来吗?

这是我的readthedoc页面:http://windtalker.readthedocs.org/en/latest/index.html

这是我想要的页面(但它没有开启):http://windtalker.readthedocs.org/en/latest/py-modindex.html

这是github项目页面:https://github.com/MacHu-GWU/windtalker

1 个答案:

答案 0 :(得分:1)

我是如此愚蠢......只需启用virturalenv功能,然后我的文档就可以成功构建