microsoft / linkcheckermd

A VSCode extension that check links in Markdown to ensure they are valid.
MIT License
16 stars 20 forks source link

correct relative link marked as error in report #54

Open FrancisVila opened 2 years ago

FrancisVila commented 2 years ago

I have this link in an md file: [XFBTransfer requests](../xfbtransfer_request) I have a file named xfbtransfer_request.md in the same folder. The link works correctly in the browser. When I request a report for the file, I get the following error: Error: ../xfbtransfer_request on line 31 does not exist.

michaelgwelch commented 1 year ago

If it's in the same folder the link should be ./xfbtransfer_request.md or just xfbtransfer_request.md. Your link is attempting to direct to a file in the parent directory.

francis-vila commented 1 year ago

Sorry! I don't know how I could have overlooked this.