我有以下index.rst
文件。
Know the cell population of your data
=====================================
Some content
.. toctree::
:maxdepth: 2
Installation
~~~~~~~~~~~~
.. toctree::
:maxdepth: 2
installation
Scripts
~~~~~~~
.. toctree::
:maxdepth: 2
scripts
API documentation
~~~~~~~~~~~~~~~~~
.. toctree::
:maxdepth: 2
apidoc
Roadmap
~~~~~~~
.. toctree::
:maxdepth: 2
roadmap
Indices and Tables
==================
* :ref: `genindex`
现在侧边栏看起来像这样:
如该图所述。我想做几件事。
我该怎么做?
答案 0 :(得分:7)
我终于通过以下方式修复了它
在Sphinx的 _template 目录中创建一个文件
叫foo.html
。
内容可能如下所示:
<hr />
<p>
<h2 class='logo'>
<a href="https://foo.bar.com/">Web Version</a>
</h2>
</p>
最后在 conf.py 中添加:
html_sidebars = {
'**': [
'localtoc.html',
'relations.html',
'searchbox.html',
# located at _templates/
'foo.html',
]
}
最后它看起来像这样:
答案 1 :(得分:1)
我可以为第一个问题提出一些建议。我绝不是CSS的专家,所以我的解决方案可能不是更优雅的,但它确实有用!放入你的源/ _static / custom.css&#39;档案:
.sphinxsidebar a.reference.internal[href='#'] {
display: none;
}
也许CSS专家应该给出更好的选择...