Sphinx toctree,在一个页面中自动模块化所有html

时间:2016-04-18 12:51:27

标签: python html python-sphinx

我正在使用Sphinx来记录我的Python项目。我的问题是我的所有python文件在目录下,列在一页下。

这是我到目前为止所拥有的。我会在不同的html页面中提交Python_file_1,Python_file_2和Python_file_3。他们在同一页面旁边。任何建议或评论将不胜感激!

    Welcome to Sphinx documentation!
=================================================================================

Contents:

.. toctree::
   :maxdepth: 6


.. automodule:: Python_file_1
.. autoclass:: Pyhon1_class
    :members:

.. automodule:: Python_file2

.. automodule:: Python_file_3
.. autoclass:: Python3_class
    :members:

0 个答案:

没有答案