I noticed that one important piece did not make it into your great re-implementation of the follow-links feature. You are missing the unquote of paths as markdown does not support spaces or any special characters in the relative links, which makes it necessary to url-encode that paths. The current implementation does not take that into account which is why files i.e. with a space (encoded %20) cannot be found and are reported (falsely) as not being available
[Some Link](../this%20is/not%20working.md)
The fix is minor and should not have any side-effects.
Hey,
me again :)
I noticed that one important piece did not make it into your great re-implementation of the
follow-links
feature. You are missing theunquote
of paths as markdown does not support spaces or any special characters in the relative links, which makes it necessary to url-encode that paths. The current implementation does not take that into account which is why files i.e. with a space (encoded%20
) cannot be found and are reported (falsely) as not being availableThe fix is minor and should not have any side-effects.