You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Something is odd about how hidden directories are handled. There are three related issues I can identify. One may be a design choice. One may be an oddity. The last is definitely unintended.
First, create foo.md and .hidden/bar.md. [[bar]] in foo.md fails. However, I can understand ignoring hidden directories being a design-choice.
Second, create .hidden/foo.md and .hidden/bar.md. [[bar]] in .hidden/foo.md fails and [[foo]] in .hidden/bar.md fails. I find this odd, because they are both in the same directory. However, I can understand this being a strange edge-case because the directory is hidden.
Here is where it gets stranger. Create .hidden/foo.md and .hidden/bar.md. Change directory to .hidden. [[bar]] in foo.md fails and [[foo]] in bar.md fails. So, because the working directory is hidden, files cannot reference each other.
The text was updated successfully, but these errors were encountered:
Something is odd about how hidden directories are handled. There are three related issues I can identify. One may be a design choice. One may be an oddity. The last is definitely unintended.
First, create
foo.md
and.hidden/bar.md
.[[bar]]
infoo.md
fails. However, I can understand ignoring hidden directories being a design-choice.Second, create
.hidden/foo.md
and.hidden/bar.md
.[[bar]]
in.hidden/foo.md
fails and[[foo]]
in.hidden/bar.md
fails. I find this odd, because they are both in the same directory. However, I can understand this being a strange edge-case because the directory is hidden.Here is where it gets stranger. Create
.hidden/foo.md
and.hidden/bar.md
. Change directory to.hidden
.[[bar]]
infoo.md
fails and[[foo]]
inbar.md
fails. So, because the working directory is hidden, files cannot reference each other.The text was updated successfully, but these errors were encountered: