如何在制作htmlHelp时使用Sphinx RTD主题隐藏侧边栏

How to hide the sidebar using Sphinx RTD theme when making htmlhelp(如何在制作htmlHelp时使用Sphinx RTD主题隐藏侧边栏)
本文介绍了如何在制作htmlHelp时使用Sphinx RTD主题隐藏侧边栏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SphinxReadTheDocs主题一起使用时是否可以隐藏侧边栏?

将问题再扩展一下,我可以在发出命令时将其包括在侧边栏中吗:

$make html

并且不包括它发出命令:

$make htmlHelp

而不更改代码?也许可以在layout.html中添加一些内容。

推荐答案

首先,在一个帖子中问两个问题是不好的形式。下次,创建单独的问题。

对于您的第一个问题,我不确定选项collapse_navigation的实际用途,但它的名称意味着它实现了您想要的功能。缺省值为False,因此将其切换为True并查看会发生什么。请参阅其他Read the Docs theme configuration options。

对于您的第二个问题,至少有两种方法。

您可以使用sphinx-build-D选项并覆盖conf.py中的设置。

您可以有多个conf.py文件(按您认为合适的方式命名),并使用-c选项为您需要的输出选择适当的文件。

这篇关于如何在制作htmlHelp时使用Sphinx RTD主题隐藏侧边栏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)