You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://example.com/docs/ --> https://example.com/docs/ (content of index.rst)
https://example.com/docs/about-manual --> ERROR
https://example.com/docs/about-manual.html --> https://example.com/docs/about-manual.html (content of about-manual.rst)
I was hoping to be able to instead achieve the following logic
https://example.com/docs/ --> https://example.com/docs/ (content of index.rst)
https://example.com/docs/about-manual --> https://example.com/docs/about-manual (content of about-manual.rst)
https://example.com/docs/about-manual.html --> https://example.com/docs/about-manual (content of about-manual.rst)
I've tried using the html_file_suffix and html_link_suffix, but without luck. My problem with the default behavior is that a user would intuitively use a link style like https://example.com/docs/about-manual, which returns an error in this case.
Sorry if this is not rtd_sphinx_theme specific, I'm a bit unsure if this is related to the general Sphinx setup or the theme. I'm using Sphinx 1.8.5.
The text was updated successfully, but these errors were encountered:
Problem
I'm using the
rtd_sphinx_theme
and would like to structure my project as follows:Inside my root
index.rst
, the toctree is as below:This results in the below links:
I was hoping to be able to instead achieve the following logic
I've tried using the
html_file_suffix
andhtml_link_suffix
, but without luck. My problem with the default behavior is that a user would intuitively use a link style likehttps://example.com/docs/about-manual
, which returns an error in this case.Sorry if this is not
rtd_sphinx_theme
specific, I'm a bit unsure if this is related to the general Sphinx setup or the theme. I'm using Sphinx1.8.5
.The text was updated successfully, but these errors were encountered: