我正在将Sphinx文档从read_the_docs
迁移到sphinx_bootstrap_theme
。不过,我遇到了很多问题。
问题1: Bootstrap主题未加载javascript部分 尽管主题的大多数CSS都在工作,但是依赖于JQuery的Javascript部分却没有得到加载。
我尝试过的事情:
Insert the cdn for JQuery in my layout.html. Didn't work.
问题2:导航栏无法正常工作
我尽可能多地使用了导航栏。链接有标题,搜索框。但是CSS完全被搞砸了。
The title is on the right, the navigation menu is is a list view on the left.
问题3: Sidebar T.O.C无法正常工作
我希望我的globaltoc.html
出现在左侧边栏中。目前,除了我在其中硬编码的TABLE OF CONTENTS
标题以外,没有显示其他任何内容。
我到目前为止所做的:
Created a `globaltoc.html` and inserted the following:
{#
basic/globaltoc.html
~~~~~~~~~~~~~~~~~~~~
Sphinx sidebar template: global table of contents.
:copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
<h3><a href="{{ pathto(master_doc) }}">{{ _('Table of Contents') }}</a></h3>
{{ toctree() }}
在以下方面,我真的希望有所帮助。我对这个框架感到非常困惑。即使您指出我要寻求帮助的地方,也很棒。
因此,总结问题并帮助您回答问题。