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
I just did a couple searches myself. While I also can't find an authoritative source there seems to be enough issues about needing "/" on Windows to suggest that using os.path.join is wrong. I should have some free time in the next couple hours to try to fix this.
CMinx uses
toctree.text(os.path.join(directory, "index.rst"))
(here) to insert the the index files in the toctree. On Windows, this results in, e.g.,with a backslash as path separator. When reading this file, Sphinx gives the following warning:
Replacing the backward by a forward slash, i.e.,
subfolder/index.rst
instead ofsubfolder\index.rst
fixes the problem.I could not find a definite reference for that but it looks like the paths in the toctree should always use a forward slash?
The text was updated successfully, but these errors were encountered: