Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upreadthedocs removes file extension from URLs #3479
Comments
|
I explored this issue as part of hacktoberfest and found that this is actually an issue with the recommonmark package, and has been fixed (though a new package version has yet to be released): It's probably worth waiting for a new package version. |
|
Great find, thanks. I nudged them if they might consider a release, this seems to have been the only commit since may. |
|
@sw23 thank for looking into this! Please feel free to mention me on any PRs to circuitpython or libraries that you want to count for Hacktoberfest. |


If you got to f.e. https://circuitpython.readthedocs.io/en/latest/CONTRIBUTING.html
Clicking on any link that is supposed to go to a markdown file in the github repo yields a 404 because it removes the file extension.
F.e. instead of linking to
https://github.com/adafruit/circuitpython/blob/main/CODE_OF_CONDUCT.md(notice the .md)it links to
https://github.com/adafruit/circuitpython/blob/main/CODE_OF_CONDUCTThe markdown file this page is based on is correct though, it includes the file ending in the URL. So I assume this gets lost in the processing somewhere.