我正在使用 Sphinx 工具记录我的 Python 项目,我的 HTML 输出当前如下所示:
如您所见,工具栏的“导航”标题下没有任何内容。当我将以下代码添加到我的conf.py
文件中时,HTML 工具栏保持不变(导航下没有任何内容):
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'searchbox.html'
]}
我必须自己创建一些文件还是我做错了什么?
我的目标是让 HTML 看起来像这样:
我认为这与将徽标添加到我也无法创建的 HTML 是相同的问题。
这些是index.rst
我的 Sphinx 项目中文件的内容:
.. Sample documentation master file, created by
sphinx-quickstart on Thu Jul 5 09:19:15 2018.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to Sample's documentation!
====================================
.. toctree::
:maxdepth: 2
:caption: Contents:
Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`