-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Subpages links doesn't work #1268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
All files named |
Ok thanks! |
Adding this piece to the
|
It work because you desactivate
who rename all It seems the index preprocessor change the link in It look like a bug to me. |
Also, this is a duplicate of #984 |
The problem is that there is no logic to change the path in file other than SUMMARY.md in the preprocessor. check the path, if it's match "README.md", rename the file to "index.md" and change the path to "index.md" To rename all link, the preprocessor should open all file (README or not), search for path who point to README, and changed them to index.md` |
This is blocked by the issue in |
Looks like pulldown-cmark/pulldown-cmark#423 has been resolved 🎉 :) We'd love to see this fixed. 🙏 |
Closing as a duplicate of #984. Feel free to leave more comments over there. |
this is required at the moment to have sublinked markdown being generated in html see issue rust-lang/mdBook#1268
this is required at the moment to have sublinked markdown being generated in html see issue rust-lang/mdBook#1268
First, this should run through Actions reeeeeal fast. But also... I think this is a widespread issue, unfortunately: rust-lang/mdBook#1268
I'm not sure how this should work but I cannot make links works in subpages.
Here my structure:
Summary is OK and links works:
But
folder1/README.md
links doesnt workI get 404 Document not found when clicking on these in the folder1 page.
It tries to access
http://localhost:3000/folder1/folder2/README.html
instead ofhttp://localhost:3000/folder1/folder2/index.html
(according to the link of the main page)The text was updated successfully, but these errors were encountered: