Fixed broken URLs in quickstart.md and setup.md #75
Reference in New Issue
Block a user
Delete Branch "KingColton1/BrickTracker:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Since all of those documentations (except README.md) are in same /docs folder, it caused some of links (such as
[First steps](docs/first-steps.md)) being broken and lead to 404 page. Basically what it happen is if you click[First steps](docs/first-steps.md)to see the first step information, but that link itself added one extra /docs/.Expected behavior:
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker/src/branch/master/docs/first-steps.mdInstead this happens:
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker/src/branch/master/docs/docs/first-steps.md<- 404'dI fixed by removing all
docs/from link in documentation files in this folder, hope this help to lessen confusion.