我正在使用 Sphinx 为 Python 模块创建文档。
我想在页面上添加字幕,但我不希望它们出现在toctree中。
我想要小部分和简短(几行)的描述。将每个部分的标题添加到目录树会使浏览文档变得更加困难。
这是我的index.rst:
Welcome to ModernGL's documentation!
====================================
.. figure:: Examples/images/02_uniforms_and_attributes.png
:scale: 50 %
:alt: ModernGL
:align: center
:figclass: align-center
Start `here <ModernGL.html>`_.
.. toctree::
:maxdepth: 4
:caption: Contents:
ModernGL <ModernGL.rst>
Examples <Examples.rst>
Contributing <Contributing.rst>
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
我想添加一些字幕:
Subtitle 1
**********
Subtitle 2
**********
Subtitle 3
**********
Subtitle 4
**********
我检查了文档,但不知道应该使用哪种类型的下划线。不确定是否有特殊的下划线将标题转换为<h4>
或<h5>
使用 github README.md添加更多
#
字符将导致更小的标题。*.rst中的等价物是什么?构建文档可以在这里找到,它不包含字幕,因为它会破坏文档的当前结构。