Is it possible to hide the sidebar when using Sphinx
with the ReadTheDocs
theme?
Extending the question a bit more, can I have it include the sidebar when issuing a command:
$ make html
and not include it issuing a command:
$ make htmlhelp
without altering code? Maybe add something in the layout.html.
First of all, it is poor form to ask two questions in one post. Next time, create a separate question.
For your first question, I am not sure what the option collapse_navigation
actually does, but its name implies that it does what you seek. The default value is False
, so toggle it to True
and see what happens. See other Read the Docs theme configuration options.
For your second question, there are at least two methods.
You can use the -D
option of sphinx-build
and override settings in your conf.py
.
You can have multiple conf.py
files (named as you see fit), and use the -c
option to select the appropriate file for the output you want.