Closed
Description
I'm not sure how this should work but I cannot make links works in subpages.
Here my structure:
- SUMMARY.md
- folder1
- README.md
- folder2
- README.md
- stuff.md
- folder3
- README.md
- stuff.md
Summary is OK and links works:
# Summary
- [folder1](./folder1/README.md)
- [folder2](./folder1/folder2/README.md)
- [folder3](./folder1/folder3/README.md)
But folder1/README.md
links doesnt work
# folder1
- [folder2](./folder2/README.md)
- [folder3](./folder3/README.md)
I 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 of http://localhost:3000/folder1/folder2/index.html
(according to the link of the main page)